Files
Edu/services/msg
SpecialX f1e466a772
Some checks failed
CI / quality-go (push) Failing after 5s
CI / quality-proto (push) Failing after 3s
CI / deploy (push) Has been skipped
CI / quality-ts (push) Failing after 50s
fix(infra): resolve NestJS dist build and Prometheus target issues
NestJS: disable incremental in 6 services tsconfig.json to fix dist
not emitted when nest-cli deleteOutDir conflicts with tsc tsbuildinfo.
classes/iam: import HealthModule in AppModule to fix /healthz 404.
classes: rewrite HealthController to Drizzle getDb from TypeORM DI.
teacher-bff: add /metrics endpoint for Prometheus scraping.
infra: add node/mysql/redis exporters to observability profile.
mysql-exporter v0.15.1 uses command-line flags not DATA_SOURCE_NAME.
prometheus: enable web.enable-lifecycle for hot reload.
2026-07-09 15:12:15 +08:00
..

Msg 消息通知服务

版本0.1P5 骨架) 端口3007

职责

消息通知限界上下文,管理通知的多渠道分发(站内信、邮件、短信、推送)。 消费 Kafka 事件,写入 MySQL + Elasticsearch调用 Push Gateway 实时推送。

技术栈

  • NestJS 10 + TypeScript 5
  • Drizzle ORM + MySQL 8
  • Elasticsearch 8全文检索
  • Kafka事件消费骨架
  • pino + prom-client + OpenTelemetry

开发

pnpm install
pnpm dev   # http://localhost:3007

API

方法 路径 说明
POST /notifications 发送通知
GET /notifications 查询用户通知列表
POST /notifications/:id/read 标记已读
GET /notifications/search?q= 全文检索通知

健康检查

端点 用途 鉴权
GET /healthz 存活探针liveness仅返回进程状态不检查依赖
GET /readyz 就绪探针readiness检查 DB 连接,失败返回 503

实现见 src/shared/health/health.controller.ts5 个 NestJS 服务iam/core-edu/content/msg/classes一致。

环境变量

变量 默认值 说明
PORT 3007 服务端口
DATABASE_URL - MySQL 连接串
KAFKA_BROKERS localhost:9092 Kafka broker 列表
ES_URL http://localhost:9200 Elasticsearch 地址
JWT_SECRET - JWT 密钥