mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 12:59:23 +08:00
99cef4b5c8
Signed-off-by: Xiangyu Wang <xiangyu.wang@zilliz.com>
80 lines
2.5 KiB
Go
80 lines
2.5 KiB
Go
package indexservice
|
|
|
|
import (
|
|
"strconv"
|
|
|
|
grpcindexnodeclient "github.com/zilliztech/milvus-distributed/internal/distributed/indexnode/client"
|
|
"github.com/zilliztech/milvus-distributed/internal/errors"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/indexpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
|
)
|
|
|
|
func (i *ServiceImpl) removeNode(nodeID UniqueID) {
|
|
i.nodeLock.Lock()
|
|
defer i.nodeLock.Unlock()
|
|
i.nodeClients.Remove(nodeID)
|
|
}
|
|
|
|
func (i *ServiceImpl) addNode(nodeID UniqueID, req *indexpb.RegisterNodeRequest) error {
|
|
i.nodeLock.Lock()
|
|
defer i.nodeLock.Unlock()
|
|
|
|
if i.nodeClients.CheckAddressExist(req.Address) {
|
|
errMsg := "Register IndexNode fatal, address conflict with nodeID:%d 's address" + strconv.FormatInt(nodeID, 10)
|
|
return errors.New(errMsg)
|
|
}
|
|
|
|
nodeAddress := req.Address.Ip + ":" + strconv.FormatInt(req.Address.Port, 10)
|
|
nodeClient, err := grpcindexnodeclient.NewClient(nodeAddress)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
item := &PQItem{
|
|
value: nodeClient,
|
|
key: nodeID,
|
|
addr: req.Address,
|
|
priority: 0,
|
|
}
|
|
i.nodeClients.Push(item)
|
|
return nil
|
|
}
|
|
|
|
func (i *ServiceImpl) prepareNodeInitParams() []*commonpb.KeyValuePair {
|
|
var params []*commonpb.KeyValuePair
|
|
params = append(params, &commonpb.KeyValuePair{Key: "minio.address", Value: Params.MinIOAddress})
|
|
params = append(params, &commonpb.KeyValuePair{Key: "minio.accessKeyID", Value: Params.MinIOAccessKeyID})
|
|
params = append(params, &commonpb.KeyValuePair{Key: "minio.secretAccessKey", Value: Params.MinIOSecretAccessKey})
|
|
params = append(params, &commonpb.KeyValuePair{Key: "minio.useSSL", Value: strconv.FormatBool(Params.MinIOUseSSL)})
|
|
params = append(params, &commonpb.KeyValuePair{Key: "minio.bucketName", Value: Params.MinioBucketName})
|
|
return params
|
|
}
|
|
|
|
func (i *ServiceImpl) RegisterNode(req *indexpb.RegisterNodeRequest) (*indexpb.RegisterNodeResponse, error) {
|
|
ret := &indexpb.RegisterNodeResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
},
|
|
}
|
|
|
|
nodeID, err := i.idAllocator.AllocOne()
|
|
if err != nil {
|
|
ret.Status.Reason = "ServiceImpl:RegisterNode Failed to acquire NodeID"
|
|
return ret, nil
|
|
}
|
|
|
|
err = i.addNode(nodeID, req)
|
|
if err != nil {
|
|
ret.Status.Reason = err.Error()
|
|
return ret, nil
|
|
}
|
|
|
|
ret.Status.ErrorCode = commonpb.ErrorCode_SUCCESS
|
|
params := i.prepareNodeInitParams()
|
|
ret.InitParams = &internalpb2.InitParams{
|
|
NodeID: nodeID,
|
|
StartParams: params,
|
|
}
|
|
return ret, nil
|
|
}
|