Signed-off-by: yefu.chen <yefu.chen@zilliz.com>
5.0 KiB
Create Collections
Milvus 2.0
use Collection
to represent a set of data, like Table
in traditional database. Users can create or drop Collection
. Altering the Schema
of Collection
is not supported yet. This article introduces the execution path of CreateCollection
, at the end of this article, you should know which components are involved in CreateCollection
.
The execution flow of CreateCollection
is shown in the following figure:
- Firstly,
SDK
starts aCreateCollection
request toProxy
viaGrpc
, theproto
is defined as follows:
service MilvusService {
...
rpc CreateCollection(CreateCollectionRequest) returns (common.Status) {}
...
}
message CreateCollectionRequest {
common.MsgBase base = 1; // must
string db_name = 2;
string collection_name = 3; // must
// `schema` is the serialized `schema.CollectionSchema`
bytes schema = 4; // must
int32 shards_num = 5; // must. Once set, no modification is allowed
}
message CollectionSchema {
string name = 1;
string description = 2;
bool autoID = 3; // deprecated later, keep compatible with c++ part now
repeated FieldSchema fields = 4;
}
- When received the
CreateCollection
request, theProxy
would wraps this request intoCreateCollectionTask
, and pushs this task intoDdTaskQueue
queue. After that,Proxy
would call method ofWatiToFinish
to wait until the task finished.
type task interface {
TraceCtx() context.Context
ID() UniqueID // return ReqID
SetID(uid UniqueID) // set ReqID
Name() string
Type() commonpb.MsgType
BeginTs() Timestamp
EndTs() Timestamp
SetTs(ts Timestamp)
OnEnqueue() error
PreExecute(ctx context.Context) error
Execute(ctx context.Context) error
PostExecute(ctx context.Context) error
WaitToFinish() error
Notify(err error)
Notify(err error)
type CreateCollectionTask struct {
Condition
*milvuspb.CreateCollectionRequest
ctx context.Context
rootCoord types.RootCoord
dataCoordClient types.DataCoord
result *commonpb.Status
schema *schemapb.CollectionSchema
}
-
There is a backgroud service in
Proxy
, this service would get theCreateCollectionTask
fromDdTaskQueue
, and executes it in three phases.PreExecute
, do some static checking at this phase, such as check ifCollection Name
andField Name
is legal, if there are duplicate columns, etc.Execute
, at thie phase,Proxy
would sendCreateCollection
request toRootCoord
viaGrpc
,and wait the reponse, theproto
is defined as follow:
service RootCoord { ... rpc CreateCollection(milvus.CreateCollectionRequest) returns (common.Status){} ... }
PostExecute
,CreateCollectonTask
does nothing at this phase, and return directly.
-
RootCoord
would wraps theCreateCollection
request intoCreateCollectionReqTask
, and then call functionexecuteTask
.executeTask
would return until thecontext
is done orCreateCollectionReqTask.Execute
returned.
type reqTask interface {
Ctx() context.Context
Type() commonpb.MsgType
Execute(ctx context.Context) error
Core() *Core
Core() *Core }
type CreateCollectionReqTask struct {
baseReqTask
Req *milvuspb.CreateCollectionRequest
}
-
CreateCollectionReqTask.Execute
would allocCollecitonID
and defaultPartitionID
, and setVirtual Channel
andPhysical Channel
, which are used byMsgStream
, then write theCollection
's meta intometaTable
-
After
Collection
's meta writing intometaTable
,Milvus
would consider this collection has been created successfully. -
RootCoord
would alloc a timestamp fromTSO
before writingCollection
's meta intometaTable
, and this timestamp is considered as the point when the collection was created -
At last
RoooCoord
will send a message ofCreateCollectionRequest
intoMsgStream
, and other components, who has subscribe to theMsgStream
, would be notified. TheProto
ofCreateCollectionRequest
is defined as follow:
message CreateCollectionRequest {
common.MsgBase base = 1;
string db_name = 2;
string collectionName = 3;
string partitionName = 4;
int64 dbID = 5;
int64 collectionID = 6;
int64 partitionID = 7;
// `schema` is the serialized `schema.CollectionSchema`
bytes schema = 8;
repeated string virtualChannelNames = 9;
repeated string physicalChannelNames = 10;
}
- After all these operations,
RootCoord
would update internal timestamp and return, so theProxy
would get the reponse.
Notes:
-
In the
Proxy
, allDDL
requests will be wraped intotask
, and push thetask
intoDdTaskQueue
, the backgroud service will read a newtask
fromDdTaskQueue
only when the previous one is finished. So all theDDL
requests are executed serially on theProxy
-
In the
RootCoord
, allDDL
requests will be wrapped intoreqTask
, but there is no task queue, so theDDL
requests will be executed in paralledl onRootCoord
.