package master import ( "errors" "log" "strconv" "github.com/golang/protobuf/proto" "github.com/zilliztech/milvus-distributed/internal/util/typeutil" "github.com/zilliztech/milvus-distributed/internal/proto/commonpb" "github.com/zilliztech/milvus-distributed/internal/proto/etcdpb" "github.com/zilliztech/milvus-distributed/internal/proto/internalpb" "github.com/zilliztech/milvus-distributed/internal/proto/schemapb" "github.com/zilliztech/milvus-distributed/internal/proto/servicepb" ) type Timestamp = typeutil.Timestamp const collectionMetaPrefix = "collection/" type createCollectionTask struct { baseTask req *internalpb.CreateCollectionRequest } type dropCollectionTask struct { baseTask req *internalpb.DropCollectionRequest } type hasCollectionTask struct { baseTask hasCollection bool req *internalpb.HasCollectionRequest } type describeCollectionTask struct { baseTask description *servicepb.CollectionDescription req *internalpb.DescribeCollectionRequest } type showCollectionsTask struct { baseTask stringListResponse *servicepb.StringListResponse req *internalpb.ShowCollectionRequest } ////////////////////////////////////////////////////////////////////////// func (t *createCollectionTask) Type() internalpb.MsgType { if t.req == nil { log.Printf("null request") return 0 } return t.req.MsgType } func (t *createCollectionTask) Ts() (Timestamp, error) { if t.req == nil { return 0, errors.New("null request") } return t.req.Timestamp, nil } func (t *createCollectionTask) Execute() error { if t.req == nil { return errors.New("null request") } var schema schemapb.CollectionSchema err := proto.UnmarshalMerge(t.req.Schema.Value, &schema) if err != nil { return err } collectionID, err := allocGlobalID() if err != nil { return err } ts, err := t.Ts() if err != nil { return err } collection := etcdpb.CollectionMeta{ ID: collectionID, Schema: &schema, CreateTime: ts, // TODO: initial segment? SegmentIds: make([]UniqueID, 0), // TODO: initial partition? PartitionTags: make([]string, 0), } return t.mt.AddCollection(&collection) } ////////////////////////////////////////////////////////////////////////// func (t *dropCollectionTask) Type() internalpb.MsgType { if t.req == nil { log.Printf("null request") return 0 } return t.req.MsgType } func (t *dropCollectionTask) Ts() (Timestamp, error) { if t.req == nil { return 0, errors.New("null request") } return Timestamp(t.req.Timestamp), nil } func (t *dropCollectionTask) Execute() error { if t.req == nil { return errors.New("null request") } collectionName := t.req.CollectionName.CollectionName collectionMeta, err := t.mt.GetCollectionByName(collectionName) if err != nil { return err } collectionID := collectionMeta.ID err = (*t.kvBase).Remove(collectionMetaPrefix + strconv.FormatInt(collectionID, 10)) if err != nil { return err } delete(t.mt.collID2Meta, collectionID) return nil } ////////////////////////////////////////////////////////////////////////// func (t *hasCollectionTask) Type() internalpb.MsgType { if t.req == nil { log.Printf("null request") return 0 } return t.req.MsgType } func (t *hasCollectionTask) Ts() (Timestamp, error) { if t.req == nil { return 0, errors.New("null request") } return Timestamp(t.req.Timestamp), nil } func (t *hasCollectionTask) Execute() error { if t.req == nil { return errors.New("null request") } collectionName := t.req.CollectionName.CollectionName _, err := t.mt.GetCollectionByName(collectionName) if err == nil { t.hasCollection = true } return nil } ////////////////////////////////////////////////////////////////////////// func (t *describeCollectionTask) Type() internalpb.MsgType { if t.req == nil { log.Printf("null request") return 0 } return t.req.MsgType } func (t *describeCollectionTask) Ts() (Timestamp, error) { if t.req == nil { return 0, errors.New("null request") } return Timestamp(t.req.Timestamp), nil } func (t *describeCollectionTask) Execute() error { if t.req == nil { return errors.New("null request") } collectionName := t.req.CollectionName collection, err := t.mt.GetCollectionByName(collectionName.CollectionName) if err != nil { return err } description := servicepb.CollectionDescription{ Status: &commonpb.Status{ ErrorCode: commonpb.ErrorCode_SUCCESS, }, Schema: collection.Schema, } t.description = &description return nil } ////////////////////////////////////////////////////////////////////////// func (t *showCollectionsTask) Type() internalpb.MsgType { if t.req == nil { log.Printf("null request") return 0 } return t.req.MsgType } func (t *showCollectionsTask) Ts() (Timestamp, error) { if t.req == nil { return 0, errors.New("null request") } return Timestamp(t.req.Timestamp), nil } func (t *showCollectionsTask) Execute() error { if t.req == nil { return errors.New("null request") } collections := make([]string, 0) for _, collection := range t.mt.collID2Meta { collections = append(collections, collection.Schema.Name) } stringListResponse := servicepb.StringListResponse{ Status: &commonpb.Status{ ErrorCode: commonpb.ErrorCode_SUCCESS, }, Values: collections, } t.stringListResponse = &stringListResponse return nil }