mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-02 11:59:00 +08:00
24b29bec30
Signed-off-by: sunby <bingyi.sun@zilliz.com>
588 lines
14 KiB
Go
588 lines
14 KiB
Go
package proxy
|
|
|
|
import (
|
|
"context"
|
|
"errors"
|
|
"log"
|
|
"strconv"
|
|
"time"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
"github.com/zilliztech/milvus-distributed/internal/msgstream"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/schemapb"
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/servicepb"
|
|
)
|
|
|
|
const (
|
|
reqTimeoutInterval = time.Second * 10
|
|
)
|
|
|
|
func (p *Proxy) Insert(ctx context.Context, in *servicepb.RowBatch) (*servicepb.IntegerRangeResponse, error) {
|
|
it := &InsertTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
BaseInsertTask: BaseInsertTask{
|
|
BaseMsg: msgstream.BaseMsg{
|
|
HashValues: in.HashKeys,
|
|
},
|
|
InsertRequest: internalpb.InsertRequest{
|
|
MsgType: internalpb.MsgType_kInsert,
|
|
CollectionName: in.CollectionName,
|
|
PartitionTag: in.PartitionTag,
|
|
RowData: in.RowData,
|
|
},
|
|
},
|
|
manipulationMsgStream: p.manipulationMsgStream,
|
|
rowIDAllocator: p.idAllocator,
|
|
}
|
|
|
|
var cancel func()
|
|
it.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("insert timeout")
|
|
default:
|
|
return p.sched.DmQueue.Enqueue(it)
|
|
}
|
|
}
|
|
err := fn()
|
|
|
|
if err != nil {
|
|
return &servicepb.IntegerRangeResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
err = it.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.IntegerRangeResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
return it.result, nil
|
|
}
|
|
|
|
func (p *Proxy) CreateCollection(ctx context.Context, req *schemapb.CollectionSchema) (*commonpb.Status, error) {
|
|
cct := &CreateCollectionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
CreateCollectionRequest: internalpb.CreateCollectionRequest{
|
|
MsgType: internalpb.MsgType_kCreateCollection,
|
|
Schema: &commonpb.Blob{},
|
|
},
|
|
masterClient: p.masterClient,
|
|
schema: req,
|
|
}
|
|
var cancel func()
|
|
cct.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(cct)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
|
|
err = cct.WaitToFinish()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
|
|
return cct.result, nil
|
|
}
|
|
|
|
func (p *Proxy) Search(ctx context.Context, req *servicepb.Query) (*servicepb.QueryResult, error) {
|
|
qt := &QueryTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
SearchRequest: internalpb.SearchRequest{
|
|
MsgType: internalpb.MsgType_kSearch,
|
|
Query: &commonpb.Blob{},
|
|
},
|
|
queryMsgStream: p.queryMsgStream,
|
|
resultBuf: make(chan []*internalpb.SearchResult),
|
|
query: req,
|
|
}
|
|
var cancel func()
|
|
qt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
// Hack with test, shit here but no other ways
|
|
reqID, _ := strconv.Atoi(req.CollectionName[len(req.CollectionName)-1:])
|
|
qt.ReqID = int64(reqID)
|
|
queryBytes, _ := proto.Marshal(req)
|
|
qt.SearchRequest.Query.Value = queryBytes
|
|
log.Printf("grpc address of query task: %p", qt)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DqQueue.Enqueue(qt)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &servicepb.QueryResult{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
err = qt.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.QueryResult{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
return qt.result, nil
|
|
}
|
|
|
|
func (p *Proxy) DropCollection(ctx context.Context, req *servicepb.CollectionName) (*commonpb.Status, error) {
|
|
dct := &DropCollectionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DropCollectionRequest: internalpb.DropCollectionRequest{
|
|
MsgType: internalpb.MsgType_kDropCollection,
|
|
CollectionName: req,
|
|
},
|
|
masterClient: p.masterClient,
|
|
}
|
|
var cancel func()
|
|
dct.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(dct)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
|
|
err = dct.WaitToFinish()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
|
|
return dct.result, nil
|
|
}
|
|
|
|
func (p *Proxy) HasCollection(ctx context.Context, req *servicepb.CollectionName) (*servicepb.BoolResponse, error) {
|
|
hct := &HasCollectionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
HasCollectionRequest: internalpb.HasCollectionRequest{
|
|
MsgType: internalpb.MsgType_kHasCollection,
|
|
CollectionName: req,
|
|
},
|
|
masterClient: p.masterClient,
|
|
}
|
|
var cancel func()
|
|
hct.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(hct)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &servicepb.BoolResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
err = hct.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.BoolResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
return hct.result, nil
|
|
}
|
|
|
|
func (p *Proxy) DescribeCollection(ctx context.Context, req *servicepb.CollectionName) (*servicepb.CollectionDescription, error) {
|
|
dct := &DescribeCollectionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DescribeCollectionRequest: internalpb.DescribeCollectionRequest{
|
|
MsgType: internalpb.MsgType_kDescribeCollection,
|
|
CollectionName: req,
|
|
},
|
|
masterClient: p.masterClient,
|
|
}
|
|
var cancel func()
|
|
dct.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(dct)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &servicepb.CollectionDescription{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
err = dct.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.CollectionDescription{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
return dct.result, nil
|
|
}
|
|
|
|
func (p *Proxy) ShowCollections(ctx context.Context, req *commonpb.Empty) (*servicepb.StringListResponse, error) {
|
|
sct := &ShowCollectionsTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
ShowCollectionRequest: internalpb.ShowCollectionRequest{
|
|
MsgType: internalpb.MsgType_kDescribeCollection,
|
|
},
|
|
masterClient: p.masterClient,
|
|
}
|
|
var cancel func()
|
|
sct.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
fn := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create collection timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(sct)
|
|
}
|
|
}
|
|
err := fn()
|
|
if err != nil {
|
|
return &servicepb.StringListResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
err = sct.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.StringListResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
}, nil
|
|
}
|
|
|
|
return sct.result, nil
|
|
}
|
|
|
|
func (p *Proxy) CreatePartition(ctx context.Context, in *servicepb.PartitionName) (*commonpb.Status, error) {
|
|
cpt := &CreatePartitionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
CreatePartitionRequest: internalpb.CreatePartitionRequest{
|
|
MsgType: internalpb.MsgType_kCreatePartition,
|
|
ReqID: 0,
|
|
Timestamp: 0,
|
|
ProxyID: 0,
|
|
PartitionName: in,
|
|
//TODO, ReqID,Timestamp,ProxyID
|
|
},
|
|
masterClient: p.masterClient,
|
|
result: nil,
|
|
ctx: nil,
|
|
}
|
|
var cancel func()
|
|
cpt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
err := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("create partition timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(cpt)
|
|
}
|
|
}()
|
|
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
err = cpt.WaitToFinish()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
return cpt.result, nil
|
|
|
|
}
|
|
|
|
func (p *Proxy) DropPartition(ctx context.Context, in *servicepb.PartitionName) (*commonpb.Status, error) {
|
|
dpt := &DropPartitionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DropPartitionRequest: internalpb.DropPartitionRequest{
|
|
MsgType: internalpb.MsgType_kDropPartition,
|
|
ReqID: 0,
|
|
Timestamp: 0,
|
|
ProxyID: 0,
|
|
PartitionName: in,
|
|
//TODO, ReqID,Timestamp,ProxyID
|
|
},
|
|
masterClient: p.masterClient,
|
|
result: nil,
|
|
ctx: nil,
|
|
}
|
|
|
|
var cancel func()
|
|
dpt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
err := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("drop partition timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(dpt)
|
|
}
|
|
}()
|
|
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
err = dpt.WaitToFinish()
|
|
if err != nil {
|
|
return &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
}, nil
|
|
}
|
|
return dpt.result, nil
|
|
|
|
}
|
|
|
|
func (p *Proxy) HasPartition(ctx context.Context, in *servicepb.PartitionName) (*servicepb.BoolResponse, error) {
|
|
hpt := &HasPartitionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
HasPartitionRequest: internalpb.HasPartitionRequest{
|
|
MsgType: internalpb.MsgType_kHasPartition,
|
|
ReqID: 0,
|
|
Timestamp: 0,
|
|
ProxyID: 0,
|
|
PartitionName: in,
|
|
//TODO, ReqID,Timestamp,ProxyID
|
|
},
|
|
masterClient: p.masterClient,
|
|
result: nil,
|
|
ctx: nil,
|
|
}
|
|
|
|
var cancel func()
|
|
hpt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
err := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("has partition timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(hpt)
|
|
}
|
|
}()
|
|
|
|
if err != nil {
|
|
return &servicepb.BoolResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Value: false,
|
|
}, nil
|
|
}
|
|
err = hpt.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.BoolResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Value: false,
|
|
}, nil
|
|
}
|
|
return hpt.result, nil
|
|
|
|
}
|
|
|
|
func (p *Proxy) DescribePartition(ctx context.Context, in *servicepb.PartitionName) (*servicepb.PartitionDescription, error) {
|
|
dpt := &DescribePartitionTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
DescribePartitionRequest: internalpb.DescribePartitionRequest{
|
|
MsgType: internalpb.MsgType_kDescribePartition,
|
|
ReqID: 0,
|
|
Timestamp: 0,
|
|
ProxyID: 0,
|
|
PartitionName: in,
|
|
//TODO, ReqID,Timestamp,ProxyID
|
|
},
|
|
masterClient: p.masterClient,
|
|
result: nil,
|
|
ctx: nil,
|
|
}
|
|
|
|
var cancel func()
|
|
dpt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
err := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("describe partion timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(dpt)
|
|
}
|
|
}()
|
|
|
|
if err != nil {
|
|
return &servicepb.PartitionDescription{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Name: in,
|
|
Statistics: nil,
|
|
}, nil
|
|
}
|
|
|
|
err = dpt.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.PartitionDescription{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Name: in,
|
|
Statistics: nil,
|
|
}, nil
|
|
}
|
|
return dpt.result, nil
|
|
}
|
|
|
|
func (p *Proxy) ShowPartitions(ctx context.Context, req *servicepb.CollectionName) (*servicepb.StringListResponse, error) {
|
|
spt := &ShowPartitionsTask{
|
|
Condition: NewTaskCondition(ctx),
|
|
ShowPartitionRequest: internalpb.ShowPartitionRequest{
|
|
MsgType: internalpb.MsgType_kShowPartitions,
|
|
ReqID: 0,
|
|
Timestamp: 0,
|
|
ProxyID: 0,
|
|
CollectionName: req,
|
|
},
|
|
masterClient: p.masterClient,
|
|
result: nil,
|
|
ctx: nil,
|
|
}
|
|
|
|
var cancel func()
|
|
spt.ctx, cancel = context.WithTimeout(ctx, reqTimeoutInterval)
|
|
defer cancel()
|
|
|
|
err := func() error {
|
|
select {
|
|
case <-ctx.Done():
|
|
return errors.New("show partition timeout")
|
|
default:
|
|
return p.sched.DdQueue.Enqueue(spt)
|
|
}
|
|
}()
|
|
|
|
if err != nil {
|
|
return &servicepb.StringListResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Values: nil,
|
|
}, nil
|
|
}
|
|
|
|
err = spt.WaitToFinish()
|
|
if err != nil {
|
|
return &servicepb.StringListResponse{
|
|
Status: &commonpb.Status{
|
|
ErrorCode: commonpb.ErrorCode_UNEXPECTED_ERROR,
|
|
Reason: err.Error(),
|
|
},
|
|
Values: nil,
|
|
}, nil
|
|
}
|
|
return spt.result, nil
|
|
}
|