mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 19:39:21 +08:00
b597a637f3
Signed-off-by: XuanYang-cn <xuan.yang@zilliz.com>
39 lines
776 B
Go
39 lines
776 B
Go
package datanode
|
|
|
|
import (
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/masterpb"
|
|
)
|
|
|
|
type (
|
|
allocator interface {
|
|
allocID() (UniqueID, error)
|
|
}
|
|
|
|
allocatorImpl struct {
|
|
masterService MasterServiceInterface
|
|
}
|
|
)
|
|
|
|
func newAllocatorImpl(s MasterServiceInterface) *allocatorImpl {
|
|
return &allocatorImpl{
|
|
masterService: s,
|
|
}
|
|
}
|
|
|
|
func (alloc *allocatorImpl) allocID() (UniqueID, error) {
|
|
resp, err := alloc.masterService.AllocID(&masterpb.IDRequest{
|
|
Base: &commonpb.MsgBase{
|
|
MsgType: commonpb.MsgType_kRequestID,
|
|
MsgID: 1, // GOOSE TODO
|
|
Timestamp: 0, // GOOSE TODO
|
|
SourceID: Params.NodeID,
|
|
},
|
|
Count: 1,
|
|
})
|
|
if err != nil {
|
|
return 0, err
|
|
}
|
|
return resp.ID, nil
|
|
}
|