2021-01-19 14:44:03 +08:00
|
|
|
package masterservice
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/errors"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/etcdpb"
|
2021-01-20 09:36:50 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/internalpb2"
|
2021-01-19 14:44:03 +08:00
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/milvuspb"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/proto/schemapb"
|
|
|
|
"github.com/zilliztech/milvus-distributed/internal/util/typeutil"
|
|
|
|
)
|
|
|
|
|
|
|
|
type reqTask interface {
|
|
|
|
Type() commonpb.MsgType
|
|
|
|
Ts() (typeutil.Timestamp, error)
|
|
|
|
Execute() error
|
|
|
|
WaitToFinish() error
|
|
|
|
Notify(err error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type baseReqTask struct {
|
|
|
|
cv chan error
|
|
|
|
core *Core
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bt *baseReqTask) Notify(err error) {
|
|
|
|
bt.cv <- err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (bt *baseReqTask) WaitToFinish() error {
|
|
|
|
select {
|
|
|
|
case <-bt.core.ctx.Done():
|
|
|
|
return errors.Errorf("context done")
|
|
|
|
case err, ok := <-bt.cv:
|
|
|
|
if !ok {
|
|
|
|
return errors.Errorf("notify chan closed")
|
|
|
|
}
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreateCollectionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.CreateCollectionRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *CreateCollectionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
func (t *CreateCollectionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *CreateCollectionReqTask) Execute() error {
|
|
|
|
var schema schemapb.CollectionSchema
|
|
|
|
err := proto.Unmarshal(t.Req.Schema, &schema)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
for idx, field := range schema.Fields {
|
|
|
|
field.FieldID = int64(idx + StartOfUserFieldID)
|
|
|
|
}
|
|
|
|
rowIDField := &schemapb.FieldSchema{
|
|
|
|
FieldID: int64(RowIDField),
|
|
|
|
Name: RowIDFieldName,
|
|
|
|
IsPrimaryKey: false,
|
|
|
|
Description: "row id",
|
|
|
|
DataType: schemapb.DataType_INT64,
|
|
|
|
}
|
|
|
|
timeStampField := &schemapb.FieldSchema{
|
|
|
|
FieldID: int64(TimeStampField),
|
|
|
|
Name: TimeStampFieldName,
|
|
|
|
IsPrimaryKey: false,
|
|
|
|
Description: "time stamp",
|
|
|
|
DataType: schemapb.DataType_INT64,
|
|
|
|
}
|
|
|
|
schema.Fields = append(schema.Fields, rowIDField, timeStampField)
|
|
|
|
|
|
|
|
collID, err := t.core.idAllocator.AllocOne()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
collTs, err := t.Ts()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
partitionID, err := t.core.idAllocator.AllocOne()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-20 09:36:50 +08:00
|
|
|
collMeta := etcdpb.CollectionInfo{
|
|
|
|
ID: collID,
|
|
|
|
Schema: &schema,
|
|
|
|
CreateTime: collTs,
|
|
|
|
PartitionIDs: make([]typeutil.UniqueID, 0, 16),
|
|
|
|
}
|
|
|
|
partMeta := etcdpb.PartitionInfo{
|
|
|
|
PartitionName: Params.DefaultPartitionName,
|
|
|
|
PartitionID: partitionID,
|
|
|
|
SegmentIDs: make([]typeutil.UniqueID, 0, 16),
|
2021-01-19 14:44:03 +08:00
|
|
|
}
|
2021-01-20 09:36:50 +08:00
|
|
|
|
|
|
|
err = t.core.MetaTable.AddCollection(&collMeta, &partMeta)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-20 09:36:50 +08:00
|
|
|
schemaBytes, err := proto.Marshal(&schema)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
ddReq := internalpb2.CreateCollectionRequest{
|
|
|
|
Base: t.Req.Base,
|
|
|
|
DbName: t.Req.DbName,
|
|
|
|
CollectionName: t.Req.CollectionName,
|
|
|
|
DbID: 0, //TODO,not used
|
|
|
|
CollectionID: collID,
|
|
|
|
Schema: schemaBytes,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.core.DdCreateCollectionReq(&ddReq)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DropCollectionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.DropCollectionRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropCollectionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropCollectionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropCollectionReqTask) Execute() error {
|
|
|
|
collMeta, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = t.core.MetaTable.DeleteCollection(collMeta.ID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
//data service should drop segments , which belong to this collection, from the segment manager
|
|
|
|
|
2021-01-20 09:36:50 +08:00
|
|
|
ddReq := internalpb2.DropCollectionRequest{
|
|
|
|
Base: t.Req.Base,
|
|
|
|
DbName: t.Req.DbName,
|
|
|
|
CollectionName: t.Req.CollectionName,
|
|
|
|
DbID: 0, //not used
|
|
|
|
CollectionID: collMeta.ID,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.core.DdDropCollectionReq(&ddReq)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type HasCollectionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.HasCollectionRequest
|
|
|
|
HasCollection bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasCollectionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasCollectionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasCollectionReqTask) Execute() error {
|
|
|
|
_, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err == nil {
|
|
|
|
t.HasCollection = true
|
|
|
|
} else {
|
|
|
|
t.HasCollection = false
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DescribeCollectionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.DescribeCollectionRequest
|
|
|
|
Rsp *milvuspb.DescribeCollectionResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DescribeCollectionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DescribeCollectionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DescribeCollectionReqTask) Execute() error {
|
|
|
|
coll, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
t.Rsp.Schema = proto.Clone(coll.Schema).(*schemapb.CollectionSchema)
|
|
|
|
var newField []*schemapb.FieldSchema
|
|
|
|
for _, field := range t.Rsp.Schema.Fields {
|
|
|
|
if field.FieldID >= StartOfUserFieldID {
|
|
|
|
newField = append(newField, field)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
t.Rsp.Schema.Fields = newField
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ShowCollectionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.ShowCollectionRequest
|
|
|
|
Rsp *milvuspb.ShowCollectionResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowCollectionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowCollectionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowCollectionReqTask) Execute() error {
|
|
|
|
coll, err := t.core.MetaTable.ListCollections()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
t.Rsp.CollectionNames = coll
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type CreatePartitionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.CreatePartitionRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *CreatePartitionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *CreatePartitionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *CreatePartitionReqTask) Execute() error {
|
|
|
|
collMeta, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
partitionID, err := t.core.idAllocator.AllocOne()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
err = t.core.MetaTable.AddPartition(collMeta.ID, t.Req.PartitionName, partitionID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-20 09:36:50 +08:00
|
|
|
ddReq := internalpb2.CreatePartitionRequest{
|
|
|
|
Base: t.Req.Base,
|
|
|
|
DbName: t.Req.DbName,
|
|
|
|
CollectionName: t.Req.CollectionName,
|
|
|
|
PartitionName: t.Req.PartitionName,
|
|
|
|
DbID: 0, // todo, not used
|
|
|
|
CollectionID: collMeta.ID,
|
|
|
|
PartitionID: partitionID,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.core.DdCreatePartitionReq(&ddReq)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DropPartitionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.DropPartitionRequest
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropPartitionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropPartitionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *DropPartitionReqTask) Execute() error {
|
|
|
|
coll, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-20 09:36:50 +08:00
|
|
|
partID, err := t.core.MetaTable.DeletePartition(coll.ID, t.Req.PartitionName)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2021-01-20 09:36:50 +08:00
|
|
|
ddReq := internalpb2.DropPartitionRequest{
|
|
|
|
Base: t.Req.Base,
|
|
|
|
DbName: t.Req.DbName,
|
|
|
|
CollectionName: t.Req.CollectionName,
|
|
|
|
PartitionName: t.Req.PartitionName,
|
|
|
|
DbID: 0, //todo,not used
|
|
|
|
CollectionID: coll.ID,
|
|
|
|
PartitionID: partID,
|
|
|
|
}
|
|
|
|
|
|
|
|
err = t.core.DdDropPartitionReq(&ddReq)
|
2021-01-19 14:44:03 +08:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type HasPartitionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.HasPartitionRequest
|
|
|
|
HasPartition bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasPartitionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasPartitionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *HasPartitionReqTask) Execute() error {
|
|
|
|
coll, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
t.HasPartition = t.core.MetaTable.HasPartition(coll.ID, t.Req.PartitionName)
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type ShowPartitionReqTask struct {
|
|
|
|
baseReqTask
|
|
|
|
Req *milvuspb.ShowPartitionRequest
|
|
|
|
Rsp *milvuspb.ShowPartitionResponse
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowPartitionReqTask) Type() commonpb.MsgType {
|
|
|
|
return t.Req.Base.MsgType
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowPartitionReqTask) Ts() (typeutil.Timestamp, error) {
|
|
|
|
return t.Req.Base.Timestamp, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *ShowPartitionReqTask) Execute() error {
|
|
|
|
coll, err := t.core.MetaTable.GetCollectionByName(t.Req.CollectionName)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-01-20 09:36:50 +08:00
|
|
|
for _, partID := range coll.PartitionIDs {
|
|
|
|
partMeta, err := t.core.MetaTable.GetPartitionByID(partID)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
t.Rsp.PartitionIDs = append(t.Rsp.PartitionIDs, partMeta.PartitionID)
|
|
|
|
t.Rsp.PartitionNames = append(t.Rsp.PartitionNames, partMeta.PartitionName)
|
|
|
|
}
|
2021-01-19 14:44:03 +08:00
|
|
|
return nil
|
|
|
|
}
|