fix: 拆分 RabbitMQ Channel,修复新视频不出现在推荐列表的问题

- RabbitMQ 结构体移除共享 Ch 字段,仅管理 Connection
- 每个MQ组件(Like/Comment/Social/Popularity/Timeline)持有独立 Channel
- Timeline Consumer 使用独立 Channel 并加入自动重连机制
- Redis 操作超时从 50ms 调整为 500ms,避免 NACK 循环
- router.go 中 notification 相关逻辑适配新 API
This commit is contained in:
yiyiis
2026-05-22 23:57:06 +08:00
parent 229446e93b
commit d8bca16362
8 changed files with 156 additions and 114 deletions

View File

@@ -4,10 +4,12 @@ import (
"context"
"errors"
"time"
amqp "github.com/rabbitmq/amqp091-go"
)
type SocialMQ struct {
*RabbitMQ
ch *amqp.Channel
}
const (
@@ -31,10 +33,15 @@ func NewSocialMQ(base *RabbitMQ) (*SocialMQ, error) {
if base == nil {
return nil, errors.New("rabbitmq base is nil")
}
if err := base.DeclareTopic(socialExchange, socialQueue, socialBindingKey); err != nil {
ch, err := base.NewChannel()
if err != nil {
return nil, err
}
return &SocialMQ{RabbitMQ: base}, nil
if err := DeclareTopic(ch, socialExchange, socialQueue, socialBindingKey); err != nil {
ch.Close()
return nil, err
}
return &SocialMQ{ch: ch}, nil
}
func (s *SocialMQ) Follow(ctx context.Context, followerID, vloggerID uint) error {
@@ -46,7 +53,7 @@ func (s *SocialMQ) UnFollow(ctx context.Context, followerID, vloggerID uint) err
}
func (s *SocialMQ) publish(ctx context.Context, action, routingKey string, followerID, vloggerID uint) error {
if s == nil || s.RabbitMQ == nil {
if s == nil || s.ch == nil {
return errors.New("social mq is not initialized")
}
if followerID == 0 || vloggerID == 0 {
@@ -63,5 +70,5 @@ func (s *SocialMQ) publish(ctx context.Context, action, routingKey string, follo
VloggerID: vloggerID,
OccurredAt: time.Now().UTC(),
}
return s.PublishJSON(ctx, socialExchange, routingKey, evt)
return PublishJSON(ctx, s.ch, socialExchange, routingKey, evt)
}