- RabbitMQ 结构体移除共享 Ch 字段,仅管理 Connection - 每个MQ组件(Like/Comment/Social/Popularity/Timeline)持有独立 Channel - Timeline Consumer 使用独立 Channel 并加入自动重连机制 - Redis 操作超时从 50ms 调整为 500ms,避免 NACK 循环 - router.go 中 notification 相关逻辑适配新 API
63 lines
1.4 KiB
Go
63 lines
1.4 KiB
Go
package rabbitmq
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"time"
|
|
|
|
amqp "github.com/rabbitmq/amqp091-go"
|
|
)
|
|
|
|
type TimelineMQ struct {
|
|
ch *amqp.Channel
|
|
}
|
|
|
|
const (
|
|
timelineExchange = "video.timeline.events"
|
|
timelineQueue = "video.timeline.update.queue"
|
|
timelineBindingKey = "video.timeline.*"
|
|
timelinePublishRK = "video.timeline.publish"
|
|
)
|
|
|
|
type TimelineEvent struct {
|
|
EventID string `json:"event_id"`
|
|
VideoID uint `json:"video_id"`
|
|
CreateTime int64 `json:"create_time"`
|
|
OccurredAt time.Time `json:"occurred_at"`
|
|
}
|
|
|
|
func NewTimelineMQ(base *RabbitMQ) (*TimelineMQ, error) {
|
|
if base == nil {
|
|
return nil, errors.New("rabbitmq base is nil")
|
|
}
|
|
ch, err := base.NewChannel()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
if err := DeclareTopic(ch, timelineExchange, timelineQueue, timelineBindingKey); err != nil {
|
|
ch.Close()
|
|
return nil, err
|
|
}
|
|
return &TimelineMQ{ch: ch}, nil
|
|
}
|
|
|
|
func (t *TimelineMQ) PublishVideo(ctx context.Context, videoID uint, createTime time.Time) error {
|
|
if t == nil || t.ch == nil {
|
|
return errors.New("timeline mq is not initialized")
|
|
}
|
|
if videoID == 0 {
|
|
return errors.New("videoID are required")
|
|
}
|
|
id, err := newEventID(16)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
timeline := TimelineEvent{
|
|
EventID: id,
|
|
VideoID: videoID,
|
|
CreateTime: createTime.UnixMilli(),
|
|
OccurredAt: time.Now(),
|
|
}
|
|
return PublishJSON(ctx, t.ch, timelineExchange, timelinePublishRK, timeline)
|
|
}
|