milvus/internal/proxyservice/proxyservice.go

46 lines
1.0 KiB
Go

package proxyservice
import (
"context"
"math/rand"
"time"
"github.com/zilliztech/milvus-distributed/internal/msgstream"
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
)
type ServiceImpl struct {
allocator NodeIDAllocator
sched *TaskScheduler
tick TimeTick
nodeInfos *GlobalNodeInfoTable
stateCode internalpb2.StateCode
//subStates *internalpb2.ComponentStates
nodeStartParams []*commonpb.KeyValuePair
ctx context.Context
cancel context.CancelFunc
msFactory msgstream.Factory
}
func NewServiceImpl(ctx context.Context, factory msgstream.Factory) (*ServiceImpl, error) {
rand.Seed(time.Now().UnixNano())
ctx1, cancel := context.WithCancel(ctx)
s := &ServiceImpl{
ctx: ctx1,
cancel: cancel,
msFactory: factory,
}
s.allocator = NewNodeIDAllocator()
s.sched = NewTaskScheduler(ctx1)
s.nodeInfos = NewGlobalNodeInfoTable()
s.stateCode = internalpb2.StateCode_ABNORMAL
return s, nil
}