market-assistant/docs/engineering-notes.md

17 lines
730 B
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 工程说明(单机演示 vs 生产)
## 任务执行模型
- **当前实现**:创建京东流水线任务后,后端在 **后台线程** 中执行采集与报告步骤。
- **含义**:适合**本机或单进程演示**;进程重启会中断未完成任务。
- **生产演进建议**:改为 **Celery / RQ / Django-Q** 等任务队列 + 独立 worker 进程;并配置 **超时、重试、并发上限** 与日志采集。
## 与里程碑文档的关系
- 阶段 1「竞品分析 MVP」在单机环境下可完整演示。
- 对外部试点或 SLA 承诺前,应补充 **部署文档**(进程守护、环境变量、静态资源)与 **队列化** 方案。
---
*工程说明Market-Assistant*