milvus/internal/proxyservice/timetick.go

91 lines
1.8 KiB
Go
Raw Normal View History

package proxyservice
import (
"context"
"log"
"sync"
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
"github.com/zilliztech/milvus-distributed/internal/msgstream"
)
type (
TimeTick interface {
Start() error
Close()
}
TimeTickImpl struct {
ttBarrier TimeTickBarrier
channel msgstream.MsgStream
wg sync.WaitGroup
ctx context.Context
cancel context.CancelFunc
}
)
func (tt *TimeTickImpl) Start() error {
tt.wg.Add(1)
go func() {
defer tt.wg.Done()
for {
select {
case <-tt.ctx.Done():
log.Println("time tick loop was canceled by context!")
return
default:
current, err := tt.ttBarrier.GetTimeTick()
if err != nil {
log.Println("GetTimeTick error: ", err)
break
}
msgPack := msgstream.MsgPack{}
timeTickMsg := &msgstream.TimeTickMsg{
BaseMsg: msgstream.BaseMsg{
HashValues: []uint32{0},
},
TimeTickMsg: internalpb2.TimeTickMsg{
Base: &commonpb.MsgBase{
MsgType: commonpb.MsgType_kTimeTick,
MsgID: 0,
Timestamp: current,
SourceID: 0,
},
},
}
msgPack.Msgs = append(msgPack.Msgs, timeTickMsg)
err = tt.channel.Produce(&msgPack)
if err != nil {
log.Println("send time tick error: ", err)
} else {
}
log.Println("send to master: ", current)
}
}
}()
tt.channel.Start()
err := tt.ttBarrier.Start()
if err != nil {
return err
}
return nil
}
func (tt *TimeTickImpl) Close() {
tt.channel.Close()
tt.ttBarrier.Close()
tt.cancel()
tt.wg.Wait()
}
func newTimeTick(ctx context.Context, ttBarrier TimeTickBarrier, channel msgstream.MsgStream) TimeTick {
ctx1, cancel := context.WithCancel(ctx)
return &TimeTickImpl{ctx: ctx1, cancel: cancel, ttBarrier: ttBarrier, channel: channel}
}