saas-backend-bot
df99305dd6
CI/CD Pipeline / Check push changed paths (pull_request) Has been skipped
CI/CD Pipeline / Dedup Check - skip PR tests when covered by push pipeline (pull_request) Successful in 1s
CI/CD Pipeline / Check if frontend-only change (pull_request) Successful in 2s
CI/CD Pipeline / Frontend Lint (pull_request) Has been skipped
CI/CD Pipeline / Frontend Unit Tests (pull_request) Has been skipped
CI/CD Pipeline / PR Build Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Staging Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Retag skipped Staging API Image (pull_request) Has been skipped
CI/CD Pipeline / Retag skipped Staging Web Image (pull_request) Has been skipped
CI/CD Pipeline / Retag skipped Staging Worker Image (pull_request) Has been skipped
CI/CD Pipeline / Deploy Staging (Watchtower auto-deploy) (pull_request) Has been skipped
CI/CD Pipeline / Staging E2E Tests (pull_request) Has been skipped
CI/CD Pipeline / Staging API Integration Tests (pull_request) Has been skipped
CI/CD Pipeline / ACR Image Cleanup (pull_request) Has been skipped
CI/CD Pipeline / PR Build API Image (pull_request) Successful in 29s
CI/CD Pipeline / PR Build Worker Image (pull_request) Successful in 29s
Preview Deploy / Deploy Preview Environment (pull_request) Successful in 49s
CI/CD Pipeline / Validate - Python (mypy + alembic) (pull_request) Successful in 1m39s
CI/CD Pipeline / Integration Tests (pull_request) Successful in 1m44s
CI/CD Pipeline / Validate - Style (pull_request) Successful in 2m19s
AI Code Review / AI Code Review (pull_request) Failing after 2m52s
PR Automation / Auto Approve on CI Green (pull_request) Successful in 2m54s
CI/CD Pipeline / Validate - Security (pull_request) Successful in 4m11s
CI/CD Pipeline / Unit Tests (pull_request) Failing after 6m23s
CI/CD Pipeline / Build Production API Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production Web Image (pull_request) Has been skipped
CI/CD Pipeline / Build Production Worker Image (pull_request) Has been skipped
CI/CD Pipeline / CI Gate (pull_request) Failing after 1s
CI/CD Pipeline / Deploy Production (pull_request) Has been skipped
CI/CD Pipeline / Production Browser E2E (pull_request) Has been skipped
CI/CD Pipeline / Canary Release to Production (pull_request) Has been skipped
PR Automation / Auto Merge on CI Green + Approved (pull_request) Successful in 3m39s
feat(worker): celery 队列隔离 + 孤儿任务消息作废 (#1714)
问题:素材转码与视频生成共用 celery 默认队列、worker 单进程消费,
20+ 转码积压会把用户生成任务堵 40 分钟以上;孤儿清理把任务标 failed
后 Redis 队列消息未作废,消息被重投导致 failed→running 非法转换,
worker 打印 ERROR 后继续产出半成品。
队列隔离:
- 新增 packages/shared/celery_queues.py:generation/transcode/celery
三队列与 task_routes(generate_video→generation;ingest_asset/
classify_asset/duplication→transcode),apply_queue_settings()
- worker 入口改双进程:generation worker 独占队列并内嵌 beat
(prefetch=1, GENERATION_CONCURRENCY 默认 2),transcode worker
消费 transcode,celery(并发=总-2,最小 1),任一退出则整体终止
- compose/部署脚本/ps1 同步新增 GENERATION_CONCURRENCY 与健康检查
消息作废:
- 新增 packages/shared/celery_orphan_guard.py:终态守卫
ensure_task_claimable、Redis 队列消息物理清理(JSON 信封解析,
按业务 id + celery headers.id 双匹配,未命中 rpush 保序)、
revoke_and_purge(control.revoke + 物理清队列双保险)
- 入队点(生成/上传/分片/重试)send_task 后持久化 celery_task_id
到 generation_tasks/ingest_jobs(新列,067 迁移,失败仅 warning)
- generate_video/ingest_asset 执行前校验 DB 状态:终态直接 discarded
不进业务逻辑;mark_processing 返回 False(非法转换)安全中止
- 孤儿/超时清理标 failed 时同时 revoke + 清队列消息
- pending 超时阈值 15→45 分钟,与 running 孤儿(20min)区分
测试:新增 22 个单测(路由表/真实 Redis 消息清理/终态守卫/
非法转换中止/标 failed 后消息不重投/入队持久化),全量
14301 passed;067 迁移隔离 DDL 验证 upgrade/downgrade 通过。
2026-09-05 19:07:47 +08:00
..
2026-09-04 15:19:34 +08:00
2026-08-07 19:50:01 +08:00
2026-08-24 14:16:00 +08:00
2026-08-07 22:42:20 +08:00
2026-08-08 11:14:45 +08:00
2026-08-24 14:16:00 +08:00
2026-09-05 00:44:24 +08:00
2026-06-23 14:34:01 +08:00
2026-07-24 08:47:07 +00:00
2026-07-27 07:23:03 +08:00
2026-07-23 17:57:33 +08:00
2026-08-11 22:02:08 +08:00
2026-07-24 19:04:19 +08:00
2026-07-26 22:04:30 +08:00
2026-07-25 00:16:10 +00:00
2026-07-14 09:50:57 +08:00
2026-09-04 15:19:34 +08:00
2026-09-01 20:00:12 +08:00
2026-07-14 09:49:35 +08:00
2026-07-14 09:49:35 +08:00
2026-08-20 21:41:01 +08:00
2026-07-13 16:14:46 +08:00
2026-07-24 10:24:53 +08:00
2026-07-14 07:07:51 +08:00
2026-07-23 23:01:01 +08:00
2026-07-18 15:05:08 +08:00
2026-07-27 07:23:54 +08:00
2026-07-17 18:28:54 +08:00
2026-06-27 22:52:09 +08:00
2026-09-01 17:40:34 +08:00
2026-08-29 17:54:15 +08:00
2026-07-12 11:49:41 +08:00
2026-07-13 16:14:46 +08:00
2026-07-27 00:25:32 +08:00
2026-07-27 00:25:32 +08:00
2026-07-24 16:44:35 +08:00
2026-07-15 00:12:04 +08:00
2026-07-24 08:47:07 +00:00
2026-08-09 15:10:25 +08:00
2026-07-26 23:21:17 +00:00
2026-07-13 17:45:37 +08:00
2026-07-23 00:25:25 +08:00
2026-07-23 09:56:48 +08:00
2026-07-22 22:41:24 +08:00
2026-07-22 22:42:05 +08:00
2026-07-23 21:52:01 +08:00
2026-07-13 16:14:46 +08:00
2026-07-18 14:45:53 +08:00
2026-09-05 11:30:11 +08:00
2026-08-23 16:03:30 +08:00
2026-08-17 21:08:52 +08:00
2026-08-29 23:21:59 +00:00
2026-07-23 23:01:01 +08:00
2026-07-30 00:26:00 +08:00
2026-07-25 00:16:10 +00:00
2026-07-26 00:13:44 +08:00
2026-07-26 13:14:47 +08:00
2026-07-30 08:20:36 +08:00
2026-09-05 19:07:47 +08:00
2026-07-14 10:52:01 +08:00
2026-07-27 10:09:14 +08:00
2026-07-25 00:16:10 +00:00
2026-07-13 16:14:46 +08:00
2026-07-26 13:14:47 +08:00
2026-07-24 16:44:35 +08:00
2026-07-12 09:14:55 +08:00
2026-07-24 18:58:17 +08:00
2026-07-27 07:23:54 +08:00
2026-08-17 18:18:48 +08:00
2026-08-30 02:33:19 +08:00
2026-07-27 15:28:17 +08:00
2026-07-25 00:16:10 +00:00
2026-07-30 00:25:42 +08:00
2026-07-25 00:16:10 +00:00
2026-07-24 08:47:07 +00:00
2026-07-14 07:07:51 +08:00
2026-08-14 22:16:00 +08:00
2026-07-22 15:20:53 +08:00
2026-07-24 13:35:05 +00:00
2026-08-24 14:16:00 +08:00
2026-07-22 22:42:10 +08:00
2026-07-19 07:28:56 +08:00
2026-08-16 19:25:23 +08:00
2026-08-16 07:20:15 +00:00
2026-08-10 10:40:11 +08:00
2026-08-24 23:31:00 +08:00
2026-09-03 23:09:19 +08:00
2026-09-05 11:30:11 +08:00
2026-09-05 07:57:23 +08:00
2026-09-04 13:00:11 +08:00
2026-09-05 07:57:23 +08:00
2026-09-04 13:00:11 +08:00
2026-09-05 11:30:11 +08:00
2026-07-25 11:31:28 +08:00
2026-07-26 22:04:19 +08:00
2026-07-25 22:33:25 +08:00
2026-07-25 17:38:17 +08:00
2026-07-26 22:04:29 +08:00
2026-09-05 10:12:50 +08:00
2026-09-04 00:11:51 +08:00
2026-09-04 11:38:11 +08:00
2026-09-04 01:28:35 +08:00
2026-07-26 18:17:04 +08:00
2026-07-24 11:25:49 +08:00
2026-07-24 10:59:46 +00:00
2026-09-01 20:00:12 +08:00
2026-07-21 18:50:37 +08:00
2026-07-24 10:59:46 +00:00
2026-07-21 19:00:12 +08:00
2026-08-07 20:46:00 +08:00
2026-07-24 18:58:21 +08:00
2026-07-25 22:33:25 +08:00
2026-07-20 23:48:36 +08:00
2026-07-24 18:58:21 +08:00
2026-07-26 15:38:17 +08:00
2026-07-25 22:33:25 +08:00
2026-09-02 01:40:34 +08:00
2026-07-25 17:38:17 +08:00
2026-07-23 23:54:56 +08:00
2026-08-24 16:06:00 +08:00
2026-09-05 19:07:47 +08:00
2026-07-24 13:35:05 +00:00
2026-07-27 13:33:18 +00:00
2026-07-25 16:17:09 +00:00
2026-07-22 15:53:51 +08:00
2026-07-20 09:43:49 +08:00
2026-07-24 14:07:12 +00:00
2026-07-24 08:47:07 +00:00
2026-07-25 00:16:10 +00:00
2026-07-13 12:14:02 +08:00
2026-07-24 08:47:07 +00:00
2026-07-21 18:50:37 +08:00
2026-07-25 17:38:17 +08:00
2026-09-05 07:57:23 +08:00
2026-09-03 14:56:35 +08:00
2026-09-04 00:11:51 +08:00
2026-07-25 22:33:26 +08:00
2026-06-27 22:52:09 +08:00
2026-07-25 03:33:12 +00:00
2026-07-24 18:58:17 +08:00
2026-07-24 11:25:49 +08:00
2026-06-27 22:52:09 +08:00
2026-08-29 04:25:30 +00:00
2026-07-20 09:43:49 +08:00
2026-07-26 10:47:55 +00:00
2026-06-27 22:52:09 +08:00
2026-07-14 11:02:57 +08:00
2026-09-05 00:44:24 +08:00
2026-08-20 21:41:01 +08:00
2026-07-18 19:58:08 +08:00
2026-08-23 12:55:39 +08:00
2026-07-25 10:04:00 +08:00
2026-07-26 12:58:22 +08:00
2026-07-26 12:58:22 +08:00
2026-07-24 08:47:07 +00:00
2026-08-31 23:44:35 +00:00
2026-08-22 21:51:01 +08:00
2026-08-31 16:56:52 +08:00
2026-07-24 14:07:12 +00:00
2026-07-24 14:07:12 +00:00
2026-07-24 14:07:12 +00:00
2026-07-24 22:03:50 +08:00
2026-07-24 22:03:50 +08:00
2026-09-05 16:07:45 +08:00
2026-08-31 11:11:43 +08:00
2026-08-30 21:56:02 +08:00
2026-08-30 03:38:42 +00:00
2026-07-24 16:44:35 +08:00
2026-07-19 17:40:44 +08:00
2026-07-30 00:26:11 +08:00
2026-07-30 11:50:48 +08:00
2026-07-30 11:50:48 +08:00
2026-07-13 11:07:10 +08:00
2026-07-27 07:18:00 +08:00
2026-07-25 00:16:10 +00:00
2026-07-26 22:04:19 +08:00
2026-07-13 16:14:46 +08:00
2026-07-24 08:47:07 +00:00
2026-07-27 13:33:18 +00:00
2026-07-22 23:57:27 +08:00
2026-07-25 17:38:17 +08:00
2026-07-30 07:34:57 +08:00
2026-07-30 08:19:40 +08:00
2026-07-26 22:04:19 +08:00
2026-09-01 20:00:12 +08:00
2026-08-14 22:16:00 +08:00
2026-08-03 13:51:27 +08:00
2026-09-02 01:40:34 +08:00
2026-08-03 09:43:34 +08:00
2026-07-21 23:33:01 +08:00
2026-07-24 16:00:04 +00:00
2026-07-24 16:00:04 +00:00
2026-07-26 00:25:22 +08:00
2026-07-30 00:26:00 +08:00
2026-07-25 00:16:10 +00:00
2026-07-29 12:12:37 +08:00
2026-07-27 10:09:14 +08:00
2026-07-25 00:16:10 +00:00
2026-08-24 14:16:00 +08:00
2026-08-24 01:16:00 +08:00
2026-07-23 23:55:01 +08:00
2026-07-17 20:46:29 +08:00
2026-07-25 00:16:10 +00:00
2026-07-17 15:37:41 +08:00
2026-08-16 07:01:41 +00:00
2026-07-23 15:57:09 +00:00
2026-07-13 16:14:46 +08:00
2026-07-17 15:37:41 +08:00
2026-07-30 00:26:00 +08:00
2026-07-30 01:13:58 +08:00
2026-07-24 16:44:35 +08:00
2026-07-27 18:30:13 +08:00
2026-07-30 07:45:04 +08:00
2026-07-30 00:26:05 +08:00
2026-07-09 11:53:39 +08:00
2026-07-13 16:14:46 +08:00
2026-07-15 13:20:55 +08:00
2026-09-05 11:30:11 +08:00
2026-07-27 15:28:17 +08:00
2026-07-30 00:25:42 +08:00
2026-07-25 00:16:10 +00:00
2026-08-26 17:22:08 +08:00
2026-09-03 20:01:25 +08:00
2026-07-15 13:20:58 +08:00
2026-07-21 18:50:37 +08:00
2026-07-27 07:23:54 +08:00
2026-08-02 22:14:12 +08:00
2026-08-02 08:55:14 +08:00
2026-08-02 08:55:14 +08:00
2026-08-29 18:38:42 +00:00
2026-08-09 11:21:08 +08:00
2026-06-24 19:54:36 +08:00
2026-07-23 23:01:01 +08:00
2026-07-24 11:25:49 +08:00
2026-08-07 15:16:44 +08:00
2026-08-07 15:16:44 +08:00
2026-08-24 16:51:04 +08:00
2026-09-04 11:56:18 +08:00
2026-07-25 22:33:25 +08:00
2026-07-24 08:47:07 +00:00
2026-09-04 13:00:11 +08:00
2026-07-24 08:47:07 +00:00
2026-07-24 08:47:07 +00:00
2026-06-24 10:44:33 +08:00
2026-07-25 00:16:10 +00:00
2026-08-16 15:16:18 +08:00
2026-08-26 00:21:00 +08:00
2026-07-25 12:56:26 +08:00
2026-07-27 00:25:32 +08:00
2026-09-04 15:19:34 +08:00
2026-09-04 15:19:34 +08:00
2026-08-23 16:03:30 +08:00
2026-07-26 08:29:38 +00:00
2026-07-24 14:07:12 +00:00
2026-09-02 08:40:36 +08:00
2026-09-01 13:32:22 +00:00
2026-07-24 16:44:39 +08:00
2026-07-23 23:54:56 +08:00
2026-08-14 22:16:00 +08:00
2026-07-27 13:33:18 +00:00
2026-08-31 16:57:05 +00:00
2026-09-02 01:40:34 +08:00
2026-08-31 13:35:05 +08:00
2026-07-25 08:12:53 +08:00
2026-07-27 13:33:18 +00:00
2026-07-26 08:29:38 +00:00
2026-07-25 00:16:10 +00:00
2026-09-05 19:07:47 +08:00
2026-07-27 15:28:17 +08:00
2026-07-30 00:25:30 +08:00
2026-07-25 12:56:26 +08:00
2026-07-22 15:53:51 +08:00
2026-07-13 16:14:46 +08:00
2026-07-25 17:34:20 +00:00
2026-07-25 14:16:40 +00:00
2026-07-27 07:23:54 +08:00
2026-07-26 16:28:12 +00:00
2026-07-14 09:50:57 +08:00
2026-07-24 10:59:46 +00:00
2026-07-07 11:58:27 +08:00
2026-07-25 22:33:25 +08:00
2026-07-24 18:58:14 +08:00
2026-06-27 22:52:09 +08:00
2026-09-05 19:07:47 +08:00
2026-07-24 14:07:12 +00:00
2026-09-05 11:37:49 +08:00
2026-09-05 19:07:47 +08:00
2026-07-15 11:51:45 +08:00
2026-08-24 21:21:00 +08:00
2026-07-27 13:33:18 +00:00
2026-07-21 18:50:37 +08:00
2026-07-30 09:59:59 +08:00
2026-07-28 12:23:52 +08:00
2026-07-25 22:33:25 +08:00
2026-07-09 21:21:23 +08:00
2026-07-30 08:45:15 +08:00
2026-07-25 22:33:25 +08:00
2026-08-24 12:26:01 +08:00
2026-07-24 14:07:12 +00:00
2026-07-25 00:16:10 +00:00
2026-07-30 08:20:02 +08:00
2026-08-24 14:16:00 +08:00
2026-08-26 17:22:08 +08:00
2026-07-25 22:33:25 +08:00
2026-07-30 08:45:19 +08:00
2026-08-23 14:57:05 +08:00
2026-08-27 01:44:19 +08:00
2026-07-27 00:25:32 +08:00
2026-07-28 12:24:00 +08:00
2026-07-25 00:16:10 +00:00
2026-07-21 18:50:37 +08:00
2026-07-29 02:18:43 +00:00
2026-07-28 12:23:46 +08:00
2026-07-25 00:16:10 +00:00
2026-07-03 18:56:16 +08:00
2026-07-23 10:04:18 +08:00
2026-07-26 00:13:44 +08:00
2026-07-28 12:25:56 +08:00
2026-07-27 13:33:18 +00:00
2026-07-25 14:18:22 +08:00
2026-07-25 12:56:26 +08:00
2026-07-25 11:32:35 +08:00
2026-07-24 13:35:05 +00:00
2026-07-24 08:47:07 +00:00
2026-07-28 10:42:11 +08:00
2026-07-14 18:15:21 +08:00
2026-08-25 16:26:16 +08:00
2026-08-30 18:46:06 +08:00
2026-07-13 16:14:46 +08:00
2026-07-15 13:20:58 +08:00
2026-07-24 16:00:04 +00:00
2026-07-26 16:28:12 +00:00
2026-07-24 16:44:40 +08:00
2026-07-13 16:14:46 +08:00
2026-08-30 18:46:06 +08:00
2026-07-14 10:21:49 +08:00
2026-07-24 08:47:07 +00:00
2026-07-25 00:16:10 +00:00
2026-08-24 01:16:00 +08:00
2026-08-31 13:26:58 +00:00
2026-09-05 16:07:45 +08:00
2026-07-13 16:14:46 +08:00
2026-07-27 20:20:53 +08:00
2026-07-25 11:32:38 +08:00
2026-07-13 16:14:46 +08:00
2026-07-22 16:28:39 +08:00
2026-07-25 22:33:26 +08:00
2026-07-30 07:40:32 +08:00
2026-07-24 10:59:46 +00:00
2026-07-14 09:49:11 +08:00
2026-07-18 15:07:58 +08:00
2026-07-28 12:25:54 +08:00
2026-07-27 07:23:54 +08:00
2026-07-27 07:23:54 +08:00
2026-09-04 01:03:35 +08:00
2026-07-25 22:33:26 +08:00
2026-07-30 08:44:53 +08:00
2026-07-26 07:42:26 +00:00
2026-07-19 14:32:25 +08:00
2026-08-02 15:34:22 +08:00
2026-07-03 18:56:16 +08:00
2026-08-30 18:46:06 +08:00
2026-07-30 16:47:50 +08:00
2026-07-24 13:35:05 +00:00
2026-07-28 12:23:48 +08:00
2026-07-08 01:11:54 +08:00
2026-07-24 08:47:07 +00:00
2026-07-23 06:39:11 +08:00
2026-09-04 08:14:17 +00:00
2026-07-26 07:42:26 +00:00
2026-07-26 00:25:22 +08:00
2026-07-13 16:14:46 +08:00
2026-07-21 18:50:37 +08:00
2026-07-28 12:24:10 +08:00
2026-07-30 14:46:12 +08:00
2026-07-27 08:44:53 +08:00
2026-07-25 00:16:10 +00:00
2026-07-22 22:42:15 +08:00
2026-07-25 13:59:08 +00:00
2026-08-29 17:54:15 +08:00
2026-08-07 18:00:12 +08:00
2026-07-21 17:51:48 +08:00
2026-09-05 17:17:07 +08:00
2026-07-24 16:44:35 +08:00
2026-08-24 14:16:00 +08:00
2026-08-24 12:26:01 +08:00
2026-08-29 12:00:52 +08:00
2026-07-24 21:29:40 +08:00
2026-08-23 05:39:27 +00:00
2026-07-27 11:04:17 +08:00