diff --git a/docs/developer_guides/chap03_index_service.md b/docs/developer_guides/chap03_index_service.md index fda486526a..4627679f2f 100644 --- a/docs/developer_guides/chap03_index_service.md +++ b/docs/developer_guides/chap03_index_service.md @@ -92,8 +92,8 @@ type IndexFilePathsResponse struct { ```go type IndexNode interface { Service -// SetTimeTickChannel(channelID string) error -// SetStatsChannel(channelID string) error +// SetTimeTickChannel(channelName string) error +// SetStatsChannel(channelName string) error BuildIndex(req BuildIndexRequest) (BuildIndexResponse, error) } diff --git a/docs/developer_guides/chap04_message_stream.md b/docs/developer_guides/chap04_message_stream.md index 85eda4b37e..2f4767abd2 100644 --- a/docs/developer_guides/chap04_message_stream.md +++ b/docs/developer_guides/chap04_message_stream.md @@ -32,7 +32,7 @@ type CreateChannelRequest struct { } type CreateChannelResponse struct { - ChannelIDs []string + ChannelNames []string } ``` @@ -40,7 +40,7 @@ type CreateChannelResponse struct { ```go type DestoryChannelRequest struct { - ChannelIDs []string + ChannelNames []string } ``` @@ -50,11 +50,11 @@ type DestoryChannelRequest struct { ```go type DescribeChannelRequest struct { - ChannelIDs []string + ChannelNames []string } type ChannelDescription struct { - ChannelID string + ChannelName string Owner OwnerDescription } diff --git a/docs/developer_guides/chap05_proxy.md b/docs/developer_guides/chap05_proxy.md index b0ebdd66a7..0335f409c7 100644 --- a/docs/developer_guides/chap05_proxy.md +++ b/docs/developer_guides/chap05_proxy.md @@ -70,8 +70,8 @@ type InvalidateCollMetaCacheRequest struct { ```go type ProxyNode interface { Service - //SetTimeTickChannel(channelID string) error - //SetStatsChannel(channelID string) error + //SetTimeTickChannel(channelName string) error + //SetStatsChannel(channelName string) error CreateCollection(req CreateCollectionRequest) error DropCollection(req DropCollectionRequest) error diff --git a/docs/developer_guides/chap06_master.md b/docs/developer_guides/chap06_master.md index 357a52a529..860f769e34 100644 --- a/docs/developer_guides/chap06_master.md +++ b/docs/developer_guides/chap06_master.md @@ -359,8 +359,8 @@ Master message TenantMeta { uint64 id = 1; uint64 num_query_nodes = 2; - repeated string insert_channel_ids = 3; - string query_channel_id = 4; + repeated string insert_channel_names = 3; + string query_channel_name = 4; } ``` @@ -370,7 +370,7 @@ message TenantMeta { message ProxyMeta { uint64 id = 1; common.Address address = 2; - repeated string result_channel_ids = 3; + repeated string result_channel_names = 3; } ``` @@ -598,7 +598,7 @@ func NewSegmentManagement(ctx context.Context) *SegmentManagement ###### 10.7.1 Assign Segment ID to Inserted Rows -Master receives *AssignSegIDRequest* which contains a list of *SegIDRequest(count, channelID, collectionName, partitionName)* from Proxy. Segment Manager will assign the opened segments or open a new segment if there is no enough space, and Segment Manager will record the allocated space which can be reallocated after a expire duration. +Master receives *AssignSegIDRequest* which contains a list of *SegIDRequest(count, channelName, collectionName, partitionName)* from Proxy. Segment Manager will assign the opened segments or open a new segment if there is no enough space, and Segment Manager will record the allocated space which can be reallocated after a expire duration. ```go func (segMgr *SegmentManager) AssignSegmentID(segIDReq []*internalpb.SegIDRequest) ([]*internalpb.SegIDAssignment, error) diff --git a/docs/developer_guides/chap07_query_service.md b/docs/developer_guides/chap07_query_service.md index 33149d87ef..98eedcc540 100644 --- a/docs/developer_guides/chap07_query_service.md +++ b/docs/developer_guides/chap07_query_service.md @@ -161,8 +161,8 @@ type ReleasePartitionRequest struct { ```go type CreateQueryChannelResponse struct { - RequestChannelID string - ResultChannelID string + RequestChannelName string + ResultChannelName string } ``` @@ -177,8 +177,8 @@ type QueryNode interface { AddQueryChannel(req AddQueryChannelRequest) error RemoveQueryChannel(req RemoveQueryChannelRequest) error WatchDmChannels(req WatchDmChannelRequest) error - //SetTimeTickChannel(channelID string) error - //SetStatsChannel(channelID string) error + //SetTimeTickChannel(channelName string) error + //SetStatsChannel(channelName string) error LoadSegments(req LoadSegmentRequest) error ReleaseSegments(req ReleaseSegmentRequest) error @@ -193,8 +193,8 @@ type QueryNode interface { ```go type AddQueryChannelRequest struct { RequestBase - RequestChannelID string - ResultChannelID string + RequestChannelName string + ResultChannelName string } ``` @@ -202,8 +202,8 @@ type AddQueryChannelRequest struct { ```go type RemoveQueryChannelRequest struct { - RequestChannelID string - ResultChannelID string + RequestChannelName string + ResultChannelName string } ``` @@ -211,7 +211,7 @@ type RemoveQueryChannelRequest struct { ```go type WatchDmChannelRequest struct { - InsertChannelIDs []string + InsertChannelNames []string } ``` diff --git a/docs/developer_guides/chap09_data_service.md b/docs/developer_guides/chap09_data_service.md index 2267f3a6ce..9920b7d20d 100644 --- a/docs/developer_guides/chap09_data_service.md +++ b/docs/developer_guides/chap09_data_service.md @@ -58,7 +58,7 @@ type RegisterNodeResponse struct { ```go type SegIDRequest struct { Count uint32 - ChannelID string + ChannelName string CollectionID UniqueID PartitionID UniqueID } @@ -70,7 +70,7 @@ type AssignSegIDRequest struct { type SegIDAssignment struct { SegmentID UniqueID - ChannelID string + ChannelName string Count uint32 CollectionID UniqueID PartitionID UniqueID @@ -170,9 +170,9 @@ type DataNode interface { Service WatchDmChannels(req WatchDmChannelRequest) error - //WatchDdChannel(channelID string) error - //SetTimeTickChannel(channelID string) error - //SetStatsChannel(channelID string) error + //WatchDdChannel(channelName string) error + //SetTimeTickChannel(channelName string) error + //SetStatsChannel(channelName string) error FlushSegments(req FlushSegRequest) error } @@ -185,7 +185,7 @@ type DataNode interface { ```go type WatchDmChannelRequest struct { RequestBase - InsertChannelIDs []string + InsertChannelNames []string } ``` diff --git a/internal/proto/internal.proto b/internal/proto/internal.proto index 3d6a40b770..422e307308 100644 --- a/internal/proto/internal.proto +++ b/internal/proto/internal.proto @@ -79,7 +79,7 @@ message StringList { message MsgBase { MsgType msg_type = 1; - int64 reqID = 2; + int64 msgID = 2; uint64 timestamp = 3; int64 sourceID = 4; } diff --git a/internal/proto/internalpb2/internal.pb.go b/internal/proto/internalpb2/internal.pb.go index ad45911c68..f0f9d4fd95 100644 --- a/internal/proto/internalpb2/internal.pb.go +++ b/internal/proto/internalpb2/internal.pb.go @@ -396,7 +396,7 @@ func (m *StringList) GetValues() []string { type MsgBase struct { MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"` - ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"` + MsgID int64 `protobuf:"varint,2,opt,name=msgID,proto3" json:"msgID,omitempty"` Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"` SourceID int64 `protobuf:"varint,4,opt,name=sourceID,proto3" json:"sourceID,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -436,9 +436,9 @@ func (m *MsgBase) GetMsgType() MsgType { return MsgType_kNone } -func (m *MsgBase) GetReqID() int64 { +func (m *MsgBase) GetMsgID() int64 { if m != nil { - return m.ReqID + return m.MsgID } return 0 } @@ -512,54 +512,54 @@ func init() { proto.RegisterFile("internal.proto", fileDescriptor_41f4a519b878ee var fileDescriptor_41f4a519b878ee3b = []byte{ // 788 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xdd, 0x6e, 0x1b, 0x45, - 0x14, 0xee, 0x7a, 0xdd, 0x38, 0x7b, 0xec, 0x3a, 0xd3, 0x93, 0xa4, 0xb5, 0x4a, 0x85, 0x8c, 0xc5, - 0x45, 0x54, 0x89, 0x44, 0x32, 0x12, 0x82, 0x2b, 0x70, 0xe2, 0xd2, 0xac, 0x70, 0x4c, 0x58, 0x5b, - 0x95, 0xe8, 0x8d, 0xb5, 0xde, 0x3d, 0x59, 0x0f, 0xfb, 0x33, 0x66, 0x66, 0x1c, 0xea, 0x3e, 0x05, - 0x20, 0x1e, 0x03, 0x10, 0x70, 0xcb, 0x0b, 0xf0, 0x7b, 0xcb, 0x93, 0xc0, 0x3d, 0xda, 0x59, 0xff, - 0xc4, 0x92, 0x8b, 0x44, 0xef, 0xe6, 0x7c, 0x73, 0xce, 0x37, 0xdf, 0x77, 0xce, 0xd9, 0x85, 0x3a, - 0xcf, 0x34, 0xc9, 0xcc, 0x4f, 0x8e, 0xa7, 0x52, 0x68, 0x81, 0x87, 0x29, 0x4f, 0xae, 0x67, 0xaa, - 0x88, 0x8e, 0x97, 0x97, 0x0f, 0x6a, 0x81, 0x48, 0x53, 0x91, 0x15, 0x70, 0xeb, 0x67, 0x0b, 0xa0, - 0x2f, 0x42, 0x1a, 0x68, 0x5f, 0x93, 0xc2, 0x7b, 0xb0, 0x93, 0x89, 0x90, 0xdc, 0x6e, 0xc3, 0x6a, - 0x5a, 0x47, 0xb6, 0xb7, 0x88, 0x10, 0xa1, 0x2c, 0x45, 0x42, 0x8d, 0x52, 0xd3, 0x3a, 0x72, 0x3c, - 0x73, 0xc6, 0xf7, 0x01, 0x54, 0x5e, 0x35, 0x0a, 0x44, 0x48, 0x0d, 0xbb, 0x69, 0x1d, 0xd5, 0xdb, - 0xcd, 0xe3, 0xad, 0x8f, 0x1e, 0x1b, 0xfa, 0x33, 0x11, 0x92, 0xe7, 0xa8, 0xe5, 0x11, 0x3f, 0x00, - 0xa0, 0xe7, 0x5a, 0xfa, 0x23, 0x9e, 0x5d, 0x89, 0x46, 0xb9, 0x69, 0x1f, 0x55, 0xdb, 0x6f, 0x6c, - 0x12, 0x2c, 0xb4, 0x7e, 0x44, 0xf3, 0xa7, 0x7e, 0x32, 0xa3, 0x4b, 0x9f, 0x4b, 0xcf, 0x31, 0x45, - 0x6e, 0x76, 0x25, 0x5a, 0x7f, 0x59, 0x70, 0x67, 0x40, 0xf2, 0x9a, 0x07, 0x4b, 0x03, 0x9b, 0xa2, - 0xac, 0xff, 0x2f, 0xea, 0x14, 0xaa, 0xb9, 0xe7, 0x91, 0x41, 0x54, 0xa3, 0xb4, 0x4d, 0xd5, 0x8a, - 0x61, 0xdd, 0x39, 0x0f, 0xb2, 0x75, 0x17, 0x37, 0x8d, 0xd9, 0xaf, 0x60, 0xec, 0x29, 0xec, 0xe6, - 0xdc, 0xf9, 0x19, 0xdf, 0x81, 0x8a, 0x1f, 0x86, 0x92, 0x94, 0x32, 0x7e, 0xaa, 0xed, 0x87, 0x5b, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcd, 0x6e, 0x23, 0x45, + 0x10, 0xde, 0xf1, 0x78, 0xe3, 0x4c, 0xd9, 0xeb, 0xf4, 0x56, 0x92, 0x5d, 0x6b, 0x59, 0x21, 0x63, + 0x71, 0x88, 0x56, 0x22, 0x91, 0x8c, 0x84, 0xe0, 0x04, 0x4e, 0xbc, 0x6c, 0x46, 0x38, 0x26, 0x8c, + 0xad, 0x95, 0xd8, 0x8b, 0x35, 0x9e, 0xa9, 0x8c, 0x9b, 0xf9, 0x69, 0xab, 0xbb, 0x1d, 0xd6, 0xfb, + 0x14, 0x80, 0x78, 0x0c, 0x40, 0xc0, 0x95, 0x17, 0xe0, 0xf7, 0xca, 0x93, 0xc0, 0x1d, 0x4d, 0x8f, + 0x7f, 0x62, 0xc9, 0x41, 0x82, 0x5b, 0xd7, 0xd7, 0x55, 0x5f, 0x7f, 0x5f, 0x55, 0xcd, 0x40, 0x9d, + 0x67, 0x9a, 0x64, 0xe6, 0x27, 0xc7, 0x53, 0x29, 0xb4, 0xc0, 0xc3, 0x94, 0x27, 0xd7, 0x33, 0x55, + 0x44, 0xc7, 0xcb, 0xcb, 0x47, 0xb5, 0x40, 0xa4, 0xa9, 0xc8, 0x0a, 0xb8, 0xf5, 0x93, 0x05, 0xd0, + 0x17, 0x21, 0x0d, 0xb4, 0xaf, 0x49, 0xe1, 0x03, 0xd8, 0xc9, 0x44, 0x48, 0x6e, 0xb7, 0x61, 0x35, + 0xad, 0x23, 0xdb, 0x5b, 0x44, 0x88, 0x50, 0x96, 0x22, 0xa1, 0x46, 0xa9, 0x69, 0x1d, 0x39, 0x9e, + 0x39, 0xe3, 0xfb, 0x00, 0x2a, 0xaf, 0x1a, 0x05, 0x22, 0xa4, 0x86, 0xdd, 0xb4, 0x8e, 0xea, 0xed, + 0xe6, 0xf1, 0xd6, 0x47, 0x8f, 0x0d, 0xfd, 0x99, 0x08, 0xc9, 0x73, 0xd4, 0xf2, 0x88, 0x1f, 0x00, + 0xd0, 0x4b, 0x2d, 0xfd, 0x11, 0xcf, 0xae, 0x44, 0xa3, 0xdc, 0xb4, 0x8f, 0xaa, 0xed, 0x37, 0x36, + 0x09, 0x16, 0x5a, 0x3f, 0xa2, 0xf9, 0x73, 0x3f, 0x99, 0xd1, 0xa5, 0xcf, 0xa5, 0xe7, 0x98, 0x22, + 0x37, 0xbb, 0x12, 0xad, 0x3f, 0x2d, 0xb8, 0x37, 0x20, 0x79, 0xcd, 0x83, 0xa5, 0x81, 0x4d, 0x51, + 0xd6, 0x7f, 0x17, 0x75, 0x0a, 0xd5, 0xdc, 0xf3, 0xc8, 0x20, 0xaa, 0x51, 0xda, 0xa6, 0x6a, 0xc5, + 0xb0, 0xee, 0x9c, 0x07, 0xd9, 0xba, 0x8b, 0x9b, 0xc6, 0xec, 0xff, 0x61, 0xec, 0x39, 0xec, 0xe6, + 0xdc, 0xf9, 0x19, 0xdf, 0x81, 0x8a, 0x1f, 0x86, 0x92, 0x94, 0x32, 0x7e, 0xaa, 0xed, 0xc7, 0x5b, 0xa9, 0x3a, 0x45, 0x8e, 0xb7, 0x4c, 0xde, 0x36, 0xb3, 0xd6, 0x67, 0x00, 0x6e, 0xc6, 0xf5, 0xa5, - 0x2f, 0xfd, 0xf4, 0xe5, 0xd3, 0xee, 0x42, 0x4d, 0x69, 0x5f, 0xea, 0xd1, 0xd4, 0xe4, 0x6d, 0x6f, - 0xc2, 0x36, 0x07, 0x55, 0x53, 0x56, 0xb0, 0xb7, 0xde, 0x04, 0x18, 0x68, 0xc9, 0xb3, 0xa8, 0xc7, - 0x95, 0xce, 0xdf, 0xba, 0xce, 0xf3, 0x0a, 0x36, 0xc7, 0x5b, 0x44, 0xad, 0x6f, 0x2c, 0xa8, 0x5c, - 0xa8, 0xe8, 0xd4, 0x57, 0x84, 0xef, 0xc1, 0x6e, 0xaa, 0xa2, 0x91, 0x9e, 0x4f, 0x97, 0xa3, 0x7b, - 0xfd, 0x25, 0x8d, 0xbf, 0x50, 0xd1, 0x70, 0x3e, 0x25, 0xaf, 0x92, 0x16, 0x07, 0x3c, 0x80, 0xdb, - 0x92, 0x3e, 0x77, 0xbb, 0xc6, 0xad, 0xed, 0x15, 0x01, 0x3e, 0x04, 0x47, 0xf3, 0x94, 0x94, 0xf6, - 0xd3, 0xa9, 0xd9, 0xd0, 0xb2, 0xb7, 0x06, 0xf0, 0x01, 0xec, 0x2a, 0x31, 0x93, 0x41, 0xde, 0x80, - 0xb2, 0x29, 0x5b, 0xc5, 0xad, 0x0e, 0x54, 0x87, 0x3c, 0xa5, 0x21, 0x0f, 0xe2, 0x0b, 0x15, 0x61, - 0x1b, 0xca, 0x63, 0x5f, 0xd1, 0x62, 0x00, 0xff, 0xa1, 0x2a, 0xf7, 0xe1, 0x99, 0xdc, 0x47, 0x7f, - 0xda, 0xc6, 0x99, 0x91, 0xe7, 0xc0, 0xed, 0xb8, 0x2f, 0x32, 0x62, 0xb7, 0xf0, 0x10, 0xee, 0xc6, - 0x67, 0x92, 0xcc, 0xbe, 0x25, 0x09, 0x05, 0x9a, 0x8b, 0x8c, 0x85, 0xb8, 0x0f, 0x7b, 0x71, 0x57, - 0x8a, 0xe9, 0x0d, 0x90, 0x10, 0xa1, 0x1e, 0x9f, 0xfb, 0xea, 0x06, 0x76, 0x85, 0xf7, 0x61, 0x3f, - 0xee, 0x92, 0x0a, 0x24, 0x1f, 0xdf, 0x64, 0x88, 0xf0, 0x00, 0x58, 0x3c, 0x98, 0x88, 0x2f, 0xd6, - 0xa0, 0x62, 0x13, 0x43, 0xf1, 0x84, 0xf4, 0x60, 0xae, 0xce, 0x44, 0x76, 0xc5, 0x23, 0xc5, 0x38, - 0x1e, 0x02, 0x5b, 0x48, 0xb8, 0xf4, 0xa5, 0xe6, 0xa6, 0xfe, 0x17, 0x0b, 0xf7, 0xa1, 0x6e, 0x24, - 0xac, 0xc1, 0x5f, 0x2d, 0x44, 0xb8, 0x93, 0x4b, 0x58, 0x63, 0xbf, 0x59, 0x78, 0x1f, 0x70, 0x25, - 0x61, 0x7d, 0xf1, 0xbb, 0x85, 0x07, 0xb0, 0x67, 0x24, 0xac, 0x40, 0xc5, 0xfe, 0xb0, 0xf0, 0x2e, - 0xd4, 0x16, 0xcf, 0xb9, 0x59, 0x48, 0xcf, 0xd9, 0xb7, 0xa5, 0xe2, 0xa9, 0x05, 0x43, 0x01, 0x7e, - 0x57, 0xc2, 0xd7, 0xe0, 0xde, 0x26, 0x78, 0x29, 0x45, 0x94, 0xaf, 0x32, 0xfb, 0xbe, 0x84, 0x35, - 0xa8, 0xc4, 0x6e, 0xa6, 0x48, 0x6a, 0xf6, 0xa5, 0x6d, 0xa2, 0x2e, 0x25, 0xa4, 0x89, 0x7d, 0x65, - 0x63, 0x15, 0x76, 0xe2, 0x0f, 0x93, 0x99, 0x9a, 0xb0, 0xaf, 0x8b, 0xab, 0x01, 0xf9, 0x32, 0x98, - 0xb0, 0xbf, 0x6d, 0x23, 0xbf, 0x88, 0x3c, 0x52, 0xb3, 0x44, 0xb3, 0x7f, 0x6c, 0xac, 0x83, 0x13, - 0x2f, 0x87, 0xcb, 0x7e, 0x70, 0x8c, 0xea, 0x4f, 0x66, 0x24, 0xe7, 0xcb, 0xcf, 0x59, 0xb1, 0x1f, - 0x1d, 0xdc, 0x03, 0x88, 0x7b, 0xc2, 0x0f, 0x0b, 0x79, 0x3f, 0x39, 0x8f, 0xde, 0x05, 0x67, 0xf5, - 0xc7, 0x40, 0x06, 0x35, 0xb7, 0xef, 0x0e, 0xdd, 0x4e, 0xcf, 0x7d, 0xe6, 0xf6, 0x9f, 0xb0, 0x5b, - 0x58, 0x85, 0xca, 0xf9, 0xe3, 0x4e, 0x6f, 0x78, 0xfe, 0x29, 0xb3, 0xb0, 0x06, 0xbb, 0x9d, 0xd3, - 0xfe, 0xc7, 0xde, 0x45, 0xa7, 0xc7, 0x4a, 0xa7, 0x8f, 0x9f, 0x9d, 0x45, 0x5c, 0x4f, 0x66, 0xe3, - 0xfc, 0xa3, 0x39, 0x79, 0xc1, 0x93, 0x84, 0xbf, 0xd0, 0x14, 0x4c, 0x4e, 0x8a, 0x35, 0x7a, 0x2b, - 0xe4, 0x4a, 0x4b, 0x3e, 0x9e, 0x69, 0x0a, 0x4f, 0x96, 0xcb, 0x74, 0x62, 0x76, 0x6b, 0x15, 0x4e, - 0xc7, 0xed, 0xf1, 0x8e, 0x81, 0xde, 0xfe, 0x37, 0x00, 0x00, 0xff, 0xff, 0x10, 0x34, 0x9d, 0xf8, + 0x2f, 0xfd, 0xf4, 0xf6, 0x69, 0x77, 0xa1, 0xa6, 0xb4, 0x2f, 0xf5, 0x68, 0x6a, 0xf2, 0xb6, 0x37, + 0x61, 0x9b, 0x83, 0xaa, 0x29, 0x2b, 0xd8, 0x5b, 0x6f, 0x02, 0x0c, 0xb4, 0xe4, 0x59, 0xd4, 0xe3, + 0x4a, 0xe7, 0x6f, 0x5d, 0xe7, 0x79, 0x05, 0x9b, 0xe3, 0x2d, 0xa2, 0xd6, 0xd7, 0x16, 0x54, 0x2e, + 0x54, 0x74, 0xea, 0x2b, 0xc2, 0xf7, 0x60, 0x37, 0x55, 0xd1, 0x48, 0xcf, 0xa7, 0xcb, 0xd1, 0xbd, + 0x7e, 0x4b, 0xe3, 0x2f, 0x54, 0x34, 0x9c, 0x4f, 0xc9, 0xab, 0xa4, 0xc5, 0x01, 0x0f, 0xe0, 0x6e, + 0xaa, 0x22, 0xb7, 0x6b, 0xdc, 0xda, 0x5e, 0x11, 0xe0, 0x63, 0x70, 0x34, 0x4f, 0x49, 0x69, 0x3f, + 0x9d, 0x9a, 0x0d, 0x2d, 0x7b, 0x6b, 0x00, 0x1f, 0xc1, 0xae, 0x12, 0x33, 0x19, 0xe4, 0x0d, 0x28, + 0x9b, 0xb2, 0x55, 0xdc, 0xea, 0x40, 0x75, 0xc8, 0x53, 0x1a, 0xf2, 0x20, 0xbe, 0x50, 0x11, 0xb6, + 0xa1, 0x3c, 0xf6, 0x15, 0x2d, 0x06, 0xf0, 0x2f, 0xaa, 0x72, 0x1f, 0x9e, 0xc9, 0x7d, 0xf2, 0x87, + 0x6d, 0x9c, 0x19, 0x79, 0x0e, 0xdc, 0x8d, 0xfb, 0x22, 0x23, 0x76, 0x07, 0x0f, 0xe1, 0x7e, 0x7c, + 0x26, 0xc9, 0xec, 0x5b, 0x92, 0x50, 0xa0, 0xb9, 0xc8, 0x58, 0x88, 0xfb, 0xb0, 0x17, 0x77, 0xa5, + 0x98, 0xde, 0x00, 0x09, 0x11, 0xea, 0xf1, 0xb9, 0xaf, 0x6e, 0x60, 0x57, 0xf8, 0x10, 0xf6, 0xe3, + 0x2e, 0xa9, 0x40, 0xf2, 0xf1, 0x4d, 0x86, 0x08, 0x0f, 0x80, 0xc5, 0x83, 0x89, 0xf8, 0x7c, 0x0d, + 0x2a, 0x36, 0x31, 0x14, 0xcf, 0x48, 0x0f, 0xe6, 0xea, 0x4c, 0x64, 0x57, 0x3c, 0x52, 0x8c, 0xe3, + 0x21, 0xb0, 0x85, 0x84, 0x4b, 0x5f, 0x6a, 0x6e, 0xea, 0x7f, 0xb6, 0x70, 0x1f, 0xea, 0x46, 0xc2, + 0x1a, 0xfc, 0xc5, 0x42, 0x84, 0x7b, 0xb9, 0x84, 0x35, 0xf6, 0xab, 0x85, 0x0f, 0x01, 0x57, 0x12, + 0xd6, 0x17, 0xbf, 0x59, 0x78, 0x00, 0x7b, 0x46, 0xc2, 0x0a, 0x54, 0xec, 0x77, 0x0b, 0xef, 0x43, + 0x6d, 0xf1, 0x9c, 0x9b, 0x85, 0xf4, 0x92, 0x7d, 0x53, 0x2a, 0x9e, 0x5a, 0x30, 0x14, 0xe0, 0xb7, + 0x25, 0x7c, 0x0d, 0x1e, 0x6c, 0x82, 0x97, 0x52, 0x44, 0xf9, 0x2a, 0xb3, 0xef, 0x4a, 0x58, 0x83, + 0x4a, 0xec, 0x66, 0x8a, 0xa4, 0x66, 0x5f, 0xd8, 0x26, 0xea, 0x52, 0x42, 0x9a, 0xd8, 0x97, 0x36, + 0x56, 0x61, 0x27, 0xfe, 0x30, 0x99, 0xa9, 0x09, 0xfb, 0xaa, 0xb8, 0x1a, 0x90, 0x2f, 0x83, 0x09, + 0xfb, 0xcb, 0x36, 0xf2, 0x8b, 0xc8, 0x23, 0x35, 0x4b, 0x34, 0xfb, 0xdb, 0xc6, 0x3a, 0x38, 0xf1, + 0x72, 0xb8, 0xec, 0x7b, 0xc7, 0xa8, 0xfe, 0x64, 0x46, 0x72, 0xbe, 0xfc, 0x9c, 0x15, 0xfb, 0xc1, + 0xc1, 0x3d, 0x80, 0xb8, 0x27, 0xfc, 0xb0, 0x90, 0xf7, 0xa3, 0xf3, 0xe4, 0x5d, 0x70, 0x56, 0x7f, + 0x0c, 0x64, 0x50, 0x73, 0xfb, 0xee, 0xd0, 0xed, 0xf4, 0xdc, 0x17, 0x6e, 0xff, 0x19, 0xbb, 0x83, + 0x55, 0xa8, 0x9c, 0x3f, 0xed, 0xf4, 0x86, 0xe7, 0x9f, 0x32, 0x0b, 0x6b, 0xb0, 0xdb, 0x39, 0xed, + 0x7f, 0xec, 0x5d, 0x74, 0x7a, 0xac, 0x74, 0xfa, 0xf4, 0xc5, 0x59, 0xc4, 0xf5, 0x64, 0x36, 0xce, + 0x3f, 0x9a, 0x93, 0x57, 0x3c, 0x49, 0xf8, 0x2b, 0x4d, 0xc1, 0xe4, 0xa4, 0x58, 0xa3, 0xb7, 0x42, + 0xae, 0xb4, 0xe4, 0xe3, 0x99, 0xa6, 0xf0, 0x64, 0xb9, 0x4c, 0x27, 0x66, 0xb7, 0x56, 0xe1, 0x74, + 0xdc, 0x1e, 0xef, 0x18, 0xe8, 0xed, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa1, 0x75, 0x95, 0xa0, 0xe9, 0x05, 0x00, 0x00, } diff --git a/internal/proto/milvus.proto b/internal/proto/milvus.proto index a4cfca983e..be31d5e042 100644 --- a/internal/proto/milvus.proto +++ b/internal/proto/milvus.proto @@ -8,27 +8,27 @@ import "internal.proto"; message CreateCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collectionName = 3; - repeated bytes schema = 4; + bytes schema = 4; } message DropCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collectionName = 3; } message HasCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } message DescribeCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } @@ -38,19 +38,19 @@ message DescribeCollectionResponse { message LoadCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } message ReleaseCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } message CollectionStatsRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } @@ -61,7 +61,7 @@ message CollectionStatsResponse { message ShowCollectionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; } message ShowCollectionResponse { @@ -71,7 +71,7 @@ message ShowCollectionResponse { message CreatePartitionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string partition_name = 4; } @@ -79,14 +79,14 @@ message CreatePartitionRequest { message DropPartitionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string partition_name = 4; } message HasPartitionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string partition_name = 4; } @@ -100,14 +100,14 @@ message LoadPartitonRequest { message ReleasePartitionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; repeated string partition_names = 4; } message PartitionStatsRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string partition_name = 4; } @@ -118,7 +118,7 @@ message PartitionStatsResponse { message ShowPartitionRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; } @@ -129,7 +129,7 @@ message ShowPartitionResponse { message CreateIndexRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string field_name = 4; repeated common.KeyValuePair extra_params = 5; @@ -137,7 +137,7 @@ message CreateIndexRequest { message DescribeIndexRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string field_name = 4; } @@ -153,7 +153,7 @@ message DescribeIndexResponse { message InsertRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; string partition_name = 4; repeated common.Blob row_data = 5; @@ -167,7 +167,7 @@ message InsertResponse { message SearchRequest { internal.MsgBase base = 1; - string dbName = 2; + string db_name = 2; string collection_name = 3; repeated string partition_names = 4; string dsl = 5; diff --git a/internal/proto/milvuspb/milvus.pb.go b/internal/proto/milvuspb/milvus.pb.go index 0d1078ef14..dc330e557e 100644 --- a/internal/proto/milvuspb/milvus.pb.go +++ b/internal/proto/milvuspb/milvus.pb.go @@ -24,9 +24,9 @@ const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package type CreateCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collectionName,proto3" json:"collectionName,omitempty"` - Schema [][]byte `protobuf:"bytes,4,rep,name=schema,proto3" json:"schema,omitempty"` + Schema []byte `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -78,7 +78,7 @@ func (m *CreateCollectionRequest) GetCollectionName() string { return "" } -func (m *CreateCollectionRequest) GetSchema() [][]byte { +func (m *CreateCollectionRequest) GetSchema() []byte { if m != nil { return m.Schema } @@ -87,7 +87,7 @@ func (m *CreateCollectionRequest) GetSchema() [][]byte { type DropCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collectionName,proto3" json:"collectionName,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -142,7 +142,7 @@ func (m *DropCollectionRequest) GetCollectionName() string { type HasCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -197,7 +197,7 @@ func (m *HasCollectionRequest) GetCollectionName() string { type DescribeCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -291,7 +291,7 @@ func (m *DescribeCollectionResponse) GetSchema() [][]byte { type LoadCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -346,7 +346,7 @@ func (m *LoadCollectionRequest) GetCollectionName() string { type ReleaseCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -401,7 +401,7 @@ func (m *ReleaseCollectionRequest) GetCollectionName() string { type CollectionStatsRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -495,7 +495,7 @@ func (m *CollectionStatsResponse) GetStats() []*commonpb.KeyValuePair { type ShowCollectionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` XXX_sizecache int32 `json:"-"` @@ -581,7 +581,7 @@ func (m *ShowCollectionResponse) GetCollectionNames() []string { type CreatePartitionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -644,7 +644,7 @@ func (m *CreatePartitionRequest) GetPartitionName() string { type DropPartitionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -707,7 +707,7 @@ func (m *DropPartitionRequest) GetPartitionName() string { type HasPartitionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -833,7 +833,7 @@ func (m *LoadPartitonRequest) GetPartitionNames() []string { type ReleasePartitionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionNames []string `protobuf:"bytes,4,rep,name=partition_names,json=partitionNames,proto3" json:"partition_names,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -896,7 +896,7 @@ func (m *ReleasePartitionRequest) GetPartitionNames() []string { type PartitionStatsRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -998,7 +998,7 @@ func (m *PartitionStatsResponse) GetStats() []*commonpb.KeyValuePair { type ShowPartitionRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` XXX_unrecognized []byte `json:"-"` @@ -1092,7 +1092,7 @@ func (m *ShowPartitionResponse) GetPartitionNames() []string { type CreateIndexRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` FieldName string `protobuf:"bytes,4,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,5,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"` @@ -1163,7 +1163,7 @@ func (m *CreateIndexRequest) GetExtraParams() []*commonpb.KeyValuePair { type DescribeIndexRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` FieldName string `protobuf:"bytes,4,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"` XXX_NoUnkeyedLiteral struct{} `json:"-"` @@ -1312,7 +1312,7 @@ func (m *DescribeIndexResponse) GetIndexDescriptions() []*IndexDescription { type InsertRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"` RowData []*commonpb.Blob `protobuf:"bytes,5,rep,name=row_data,json=rowData,proto3" json:"row_data,omitempty"` @@ -1438,7 +1438,7 @@ func (m *InsertResponse) GetRowIDEnd() int64 { type SearchRequest struct { Base *internalpb2.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"` - DbName string `protobuf:"bytes,2,opt,name=dbName,proto3" json:"dbName,omitempty"` + DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"` CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"` PartitionNames []string `protobuf:"bytes,4,rep,name=partition_names,json=partitionNames,proto3" json:"partition_names,omitempty"` Dsl string `protobuf:"bytes,5,opt,name=dsl,proto3" json:"dsl,omitempty"` @@ -1604,56 +1604,56 @@ func init() { func init() { proto.RegisterFile("milvus.proto", fileDescriptor_02345ba45cc0e303) } var fileDescriptor_02345ba45cc0e303 = []byte{ - // 814 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x97, 0xcf, 0x4f, 0x1b, 0x47, - 0x14, 0xc7, 0x35, 0x18, 0x0c, 0x7e, 0xfe, 0x81, 0x59, 0xf0, 0x0f, 0xa8, 0xda, 0xba, 0x2b, 0x51, - 0x5c, 0x55, 0xb5, 0x25, 0x8a, 0x54, 0xf5, 0x86, 0x8c, 0xdb, 0x82, 0x68, 0x11, 0x5d, 0xaa, 0x1e, - 0x7a, 0xb1, 0x66, 0x77, 0xa7, 0xde, 0x55, 0xd7, 0x3b, 0xdb, 0x99, 0x71, 0x0c, 0x9c, 0x73, 0x4b, - 0xa2, 0xe4, 0x9f, 0xc8, 0x25, 0xb7, 0x24, 0x48, 0xf9, 0xa7, 0xa2, 0xfc, 0x09, 0x51, 0x34, 0x33, - 0x6b, 0x63, 0x3b, 0x8e, 0x64, 0x05, 0x21, 0xdb, 0x37, 0xe6, 0x3b, 0xf3, 0x66, 0x3e, 0xef, 0xbd, - 0xe1, 0x3b, 0x6b, 0xc8, 0x74, 0xfc, 0xe0, 0x41, 0x97, 0xd7, 0x22, 0x46, 0x05, 0x35, 0x36, 0x87, - 0x47, 0x35, 0x3d, 0xd8, 0xc9, 0x38, 0xb4, 0xd3, 0xa1, 0xa1, 0x16, 0x77, 0x72, 0x7e, 0x28, 0x08, - 0x0b, 0x71, 0xa0, 0xc7, 0xe6, 0x73, 0x04, 0xa5, 0x23, 0x46, 0xb0, 0x20, 0x47, 0x34, 0x08, 0x88, - 0x23, 0x7c, 0x1a, 0x5a, 0xe4, 0xff, 0x2e, 0xe1, 0xc2, 0xd8, 0x87, 0x65, 0x1b, 0x73, 0x52, 0x46, - 0x15, 0x54, 0x4d, 0xef, 0x7f, 0x55, 0x1b, 0xd9, 0x7d, 0xb0, 0xcf, 0x1f, 0xbc, 0xdd, 0xc0, 0x9c, - 0x58, 0x6a, 0xad, 0x51, 0x84, 0xa4, 0x6b, 0x9f, 0xe1, 0x0e, 0x29, 0x2f, 0x55, 0x50, 0x35, 0x65, - 0xc5, 0x23, 0xe3, 0x5b, 0xc8, 0x39, 0x83, 0x03, 0xd4, 0x7c, 0x42, 0xcd, 0x8f, 0xa9, 0x32, 0x9e, - 0x3b, 0x1e, 0xe9, 0xe0, 0xf2, 0x72, 0x25, 0x51, 0xcd, 0x58, 0xf1, 0xc8, 0x7c, 0x84, 0xa0, 0xd0, - 0x64, 0x34, 0x9a, 0x0b, 0x4a, 0x49, 0xb3, 0x75, 0x8c, 0xf9, 0xfd, 0xc2, 0xec, 0xc1, 0xfa, 0xed, - 0xb1, 0xad, 0xf0, 0xd3, 0x34, 0xcf, 0x10, 0x6c, 0x37, 0x09, 0x77, 0x98, 0x6f, 0x93, 0x39, 0x41, - 0x3a, 0x80, 0x9d, 0x49, 0x44, 0x3c, 0xa2, 0x21, 0x1f, 0x6e, 0x32, 0x1a, 0x69, 0xf2, 0x63, 0x04, - 0x85, 0xdf, 0x29, 0x76, 0xe7, 0x24, 0x89, 0xa7, 0x08, 0xca, 0x16, 0x09, 0x08, 0xe6, 0xf3, 0x52, - 0xd6, 0x27, 0x08, 0x8a, 0xb7, 0x28, 0x17, 0x02, 0x0b, 0x3e, 0x53, 0x1e, 0x0b, 0x4a, 0x1f, 0xe1, - 0xc4, 0x3d, 0xfe, 0x09, 0x56, 0xb8, 0x14, 0x54, 0x8b, 0xd3, 0xfb, 0xdf, 0x8c, 0x02, 0xc5, 0x9e, - 0x74, 0x4a, 0xae, 0xfe, 0xc6, 0x41, 0x97, 0x9c, 0x63, 0x9f, 0x59, 0x7a, 0xbd, 0xe9, 0x40, 0xe1, - 0xc2, 0xa3, 0xbd, 0x7b, 0xad, 0xb8, 0x79, 0x04, 0xc5, 0xf1, 0x43, 0x62, 0xee, 0xef, 0x20, 0x3f, - 0x96, 0xbb, 0x4e, 0x21, 0x65, 0xad, 0x8f, 0x26, 0xcf, 0xcd, 0x1b, 0xd9, 0x0d, 0xe5, 0x9d, 0xe7, - 0x98, 0x09, 0x7f, 0xd6, 0xb7, 0xc3, 0xd8, 0x85, 0x5c, 0xd4, 0x07, 0xd1, 0xeb, 0x96, 0xd5, 0xba, - 0xec, 0x40, 0x55, 0xb9, 0xbf, 0x42, 0xb0, 0x25, 0xad, 0x74, 0xa1, 0xa0, 0x5f, 0x22, 0xd8, 0x3c, - 0xc6, 0x7c, 0xa1, 0x98, 0x6f, 0x10, 0x6c, 0x4a, 0x3b, 0xd3, 0xd0, 0x77, 0x63, 0x2e, 0xc1, 0xaa, - 0x6b, 0xeb, 0xb3, 0x3e, 0x13, 0x7a, 0x0f, 0xd6, 0x47, 0xa1, 0xb9, 0x7a, 0x62, 0x53, 0x56, 0x6e, - 0x84, 0x9a, 0x9b, 0x6f, 0x10, 0x94, 0x62, 0xdb, 0x9b, 0x8f, 0x72, 0x4f, 0x4d, 0xfe, 0x1a, 0x41, - 0x61, 0x80, 0x3c, 0x73, 0x77, 0x9c, 0xf6, 0x9a, 0xfc, 0x09, 0xc5, 0x71, 0xe8, 0xbb, 0x7a, 0xa8, - 0xfc, 0x3e, 0x91, 0xfe, 0x36, 0x17, 0xfd, 0x33, 0x0f, 0xb5, 0xa3, 0x0f, 0xc1, 0xc4, 0xf9, 0x4d, - 0x68, 0x2c, 0x9a, 0xd8, 0xd8, 0x77, 0x08, 0x0c, 0xed, 0xb4, 0x27, 0xa1, 0x4b, 0x2e, 0x67, 0xda, - 0xd5, 0x2f, 0x01, 0xfe, 0xf5, 0x49, 0xe0, 0x0e, 0x77, 0x34, 0xa5, 0x14, 0x35, 0xdd, 0x84, 0x0c, - 0xb9, 0x14, 0x0c, 0xb7, 0x22, 0xcc, 0x70, 0x87, 0x97, 0x57, 0xa6, 0x6d, 0x5d, 0x5a, 0x85, 0x9d, - 0xab, 0x28, 0xf3, 0x85, 0xf4, 0xe8, 0xf8, 0x03, 0x6a, 0xde, 0x53, 0x36, 0x03, 0xc8, 0x2b, 0x46, - 0x0d, 0x1c, 0xc9, 0x30, 0x19, 0xe2, 0x4b, 0x4d, 0x87, 0x20, 0x1d, 0xa2, 0x14, 0xb5, 0xe3, 0xcf, - 0x90, 0x8c, 0xeb, 0xb3, 0x34, 0x6d, 0x7d, 0xe2, 0x00, 0xb3, 0x03, 0x85, 0xb1, 0xca, 0xc4, 0xb7, - 0xe9, 0x2f, 0x30, 0xf4, 0x91, 0xee, 0x2d, 0x47, 0xff, 0x5f, 0x67, 0xb7, 0x36, 0xe1, 0xa7, 0x51, - 0x6d, 0x9c, 0xda, 0xda, 0xf0, 0xc7, 0x14, 0x6e, 0xbe, 0x47, 0x90, 0x3d, 0x09, 0x39, 0x61, 0x62, - 0x01, 0xbc, 0xc4, 0x38, 0x80, 0x35, 0x46, 0x7b, 0x2d, 0x17, 0x0b, 0x1c, 0xdf, 0xbc, 0xed, 0x89, - 0x95, 0x6d, 0x04, 0xd4, 0xb6, 0x56, 0x19, 0xed, 0x35, 0xb1, 0xc0, 0xc6, 0x17, 0x90, 0xf2, 0x30, - 0xf7, 0x5a, 0xff, 0x91, 0x2b, 0x5e, 0x4e, 0x56, 0x12, 0xd5, 0xac, 0xb5, 0x26, 0x85, 0x53, 0x72, - 0xc5, 0xcd, 0x33, 0xc8, 0xf5, 0xf3, 0x8f, 0x0b, 0xfd, 0x35, 0xa4, 0x19, 0xed, 0x9d, 0x34, 0x5b, - 0x36, 0x69, 0xfb, 0xa1, 0xaa, 0x43, 0xc2, 0x02, 0x25, 0x35, 0xa4, 0x22, 0xf7, 0xd3, 0x0b, 0x48, - 0xe8, 0xaa, 0x84, 0x13, 0xd6, 0x9a, 0x12, 0x7e, 0x09, 0x5d, 0xf3, 0x2d, 0x82, 0xec, 0x05, 0xc1, - 0xcc, 0xf1, 0x16, 0xe2, 0x51, 0x31, 0xf2, 0x90, 0x70, 0x79, 0x50, 0x5e, 0x51, 0xbb, 0xc8, 0x3f, - 0x8d, 0xef, 0x61, 0x23, 0x0a, 0xb0, 0x43, 0x3c, 0x1a, 0xb8, 0x84, 0xb5, 0xda, 0x8c, 0x76, 0x23, - 0x55, 0xb6, 0x8c, 0x95, 0x1f, 0x9a, 0xf8, 0x4d, 0xea, 0xe6, 0x43, 0x04, 0x99, 0x5f, 0x83, 0x2e, - 0xf7, 0x66, 0xfa, 0xfa, 0x37, 0x1a, 0xff, 0x1c, 0xb6, 0x7d, 0xe1, 0x75, 0x6d, 0x79, 0x03, 0xea, - 0xd7, 0x7e, 0x10, 0xf8, 0xd7, 0x82, 0x38, 0x5e, 0x5d, 0x1f, 0xff, 0x83, 0xeb, 0x73, 0xc1, 0x7c, - 0xbb, 0x2b, 0x88, 0x5b, 0xef, 0x43, 0xd4, 0x15, 0x53, 0xbc, 0x22, 0xb2, 0xed, 0xa4, 0x1a, 0xff, - 0xf8, 0x21, 0x00, 0x00, 0xff, 0xff, 0x13, 0x6e, 0x96, 0xd8, 0x75, 0x10, 0x00, 0x00, + // 809 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xd4, 0x97, 0xdf, 0x6f, 0x2a, 0x45, + 0x14, 0xc7, 0x33, 0x85, 0xd2, 0x72, 0xf8, 0x51, 0xba, 0x2d, 0xb0, 0xad, 0x51, 0x71, 0x93, 0x5a, + 0x8c, 0x11, 0x92, 0xda, 0xc4, 0xf8, 0xd6, 0x50, 0xd4, 0x36, 0xd5, 0xa6, 0x6e, 0x8d, 0x0f, 0xbe, + 0x90, 0xd9, 0xdd, 0x91, 0xdd, 0xb8, 0xbb, 0xb3, 0xce, 0x0c, 0xd2, 0xf6, 0xd9, 0x47, 0x35, 0xfa, + 0x4f, 0xf8, 0xe2, 0x9b, 0xd6, 0xc4, 0x7f, 0xca, 0xdc, 0x3f, 0xe1, 0xde, 0xcc, 0xcc, 0x42, 0x81, + 0xcb, 0x03, 0xc9, 0x4d, 0x03, 0xbc, 0x31, 0xdf, 0x3d, 0x67, 0xe6, 0x73, 0xce, 0x19, 0xbe, 0x2c, + 0x50, 0x8c, 0x82, 0xf0, 0xa7, 0x01, 0x6f, 0x25, 0x8c, 0x0a, 0x6a, 0xec, 0x4d, 0xae, 0x5a, 0x7a, + 0x71, 0x58, 0x74, 0x69, 0x14, 0xd1, 0x58, 0x8b, 0x87, 0xe5, 0x20, 0x16, 0x84, 0xc5, 0x38, 0xd4, + 0x6b, 0xeb, 0x4f, 0x04, 0xf5, 0x73, 0x46, 0xb0, 0x20, 0xe7, 0x34, 0x0c, 0x89, 0x2b, 0x02, 0x1a, + 0xdb, 0xe4, 0xc7, 0x01, 0xe1, 0xc2, 0x38, 0x81, 0xac, 0x83, 0x39, 0x31, 0x51, 0x03, 0x35, 0x0b, + 0x27, 0xef, 0xb4, 0xa6, 0x76, 0x1f, 0xef, 0xf3, 0x15, 0xef, 0x77, 0x30, 0x27, 0xb6, 0x8a, 0x35, + 0xea, 0xb0, 0xe5, 0x39, 0xbd, 0x18, 0x47, 0xc4, 0xdc, 0x68, 0xa0, 0x66, 0xde, 0xce, 0x79, 0xce, + 0x35, 0x8e, 0x88, 0xf1, 0x3e, 0x94, 0xdd, 0xf1, 0x09, 0x52, 0x31, 0x33, 0xea, 0xf9, 0x8c, 0x6a, + 0xd4, 0x20, 0xc7, 0x5d, 0x9f, 0x44, 0xd8, 0xcc, 0x36, 0x50, 0xb3, 0x68, 0xa7, 0x2b, 0xeb, 0x17, + 0x04, 0xd5, 0x2e, 0xa3, 0xc9, 0x6a, 0x60, 0x4a, 0x9c, 0xfd, 0x0b, 0xcc, 0x9f, 0x99, 0xe6, 0x18, + 0x76, 0x9e, 0xce, 0xd5, 0x01, 0xf3, 0x71, 0xfe, 0x40, 0x70, 0xd0, 0x25, 0xdc, 0x65, 0x81, 0x43, + 0x56, 0x85, 0xe9, 0x14, 0x0e, 0xe7, 0x21, 0xf1, 0x84, 0xc6, 0x7c, 0x72, 0xce, 0xa8, 0x91, 0x99, + 0x98, 0xf3, 0xaf, 0x08, 0xaa, 0x5f, 0x52, 0xec, 0xad, 0x4a, 0x15, 0xbf, 0x23, 0x30, 0x6d, 0x12, + 0x12, 0xcc, 0x57, 0xa6, 0xb1, 0xbf, 0x21, 0xa8, 0x3d, 0xb1, 0xdc, 0x0a, 0x2c, 0xf8, 0x72, 0x81, + 0x6c, 0xa8, 0xbf, 0xc6, 0x93, 0x8e, 0xf9, 0x13, 0xd8, 0xe4, 0x52, 0x50, 0x53, 0x2e, 0x9c, 0xbc, + 0x37, 0x4d, 0x94, 0x5a, 0xd3, 0x15, 0xb9, 0xff, 0x16, 0x87, 0x03, 0x72, 0x83, 0x03, 0x66, 0xeb, + 0x78, 0xcb, 0x83, 0xea, 0xad, 0x4f, 0x87, 0xcf, 0xdb, 0x73, 0xeb, 0x1c, 0x6a, 0xb3, 0xa7, 0xa4, + 0xe0, 0x1f, 0x40, 0x65, 0xa6, 0x78, 0x5d, 0x43, 0xde, 0xde, 0x99, 0xae, 0x9e, 0x5b, 0xff, 0xca, + 0x79, 0x28, 0x0f, 0xbd, 0xc1, 0x4c, 0x04, 0x4b, 0xbf, 0x20, 0xc6, 0x11, 0x94, 0x93, 0x11, 0x89, + 0x8e, 0xcb, 0xaa, 0xb8, 0xd2, 0x58, 0x55, 0xc5, 0xff, 0x83, 0x60, 0x5f, 0x5a, 0xea, 0x7a, 0x51, + 0xff, 0x8d, 0x60, 0xef, 0x02, 0xf3, 0xf5, 0x82, 0x7e, 0x44, 0xb0, 0x27, 0x5d, 0x4d, 0x53, 0x2f, + 0x1b, 0xfa, 0x18, 0x76, 0xa6, 0xa1, 0xb9, 0x99, 0x55, 0x57, 0xbb, 0x3c, 0x45, 0xcd, 0xad, 0xff, + 0x10, 0xd4, 0x53, 0xf3, 0x5b, 0x91, 0x7e, 0x2f, 0x8c, 0xfe, 0x88, 0xa0, 0x3a, 0x66, 0x5e, 0xbe, + 0x47, 0x2e, 0x7a, 0x51, 0xbe, 0x86, 0xda, 0x2c, 0xf5, 0x9b, 0x3a, 0xa9, 0x7c, 0x55, 0x91, 0x26, + 0xb7, 0x1a, 0x13, 0xb4, 0xce, 0xb4, 0xb1, 0x4f, 0xd0, 0xa4, 0x05, 0xce, 0x19, 0x2d, 0x9a, 0x3b, + 0xda, 0x17, 0x08, 0x0c, 0xed, 0xb7, 0x97, 0xb1, 0x47, 0xee, 0x96, 0x3b, 0xd7, 0xb7, 0x01, 0xbe, + 0x0f, 0x48, 0xe8, 0x4d, 0xce, 0x34, 0xaf, 0x14, 0xf5, 0xb8, 0x0b, 0x45, 0x72, 0x27, 0x18, 0xee, + 0x25, 0x98, 0xe1, 0x88, 0x9b, 0x9b, 0x8b, 0x0e, 0xaf, 0xa0, 0xd2, 0x6e, 0x54, 0x96, 0xf5, 0x97, + 0x74, 0xea, 0xf4, 0x5d, 0x6a, 0xe5, 0x6b, 0xb6, 0x42, 0xa8, 0x28, 0x48, 0x4d, 0x9c, 0xc8, 0x34, + 0x99, 0x12, 0x48, 0x4d, 0xa7, 0x20, 0x9d, 0xa2, 0x14, 0xb5, 0xe3, 0xa7, 0x90, 0x4b, 0x1b, 0xb4, + 0xb1, 0x68, 0x83, 0xd2, 0x04, 0x2b, 0x82, 0xea, 0x4c, 0x6b, 0xd2, 0xfb, 0xf4, 0x0d, 0x18, 0xfa, + 0x48, 0xef, 0x89, 0x63, 0xf4, 0xed, 0x39, 0x6a, 0xcd, 0xf9, 0xab, 0xd4, 0x9a, 0xa5, 0xb6, 0x77, + 0x83, 0x19, 0x85, 0x5b, 0x2f, 0x11, 0x94, 0x2e, 0x63, 0x4e, 0x98, 0x58, 0x07, 0x3f, 0x31, 0x4e, + 0x61, 0x9b, 0xd1, 0x61, 0xcf, 0xc3, 0x02, 0xa7, 0x77, 0xef, 0x60, 0x6e, 0x6b, 0x3b, 0x21, 0x75, + 0xec, 0x2d, 0x46, 0x87, 0x5d, 0x2c, 0xb0, 0xf1, 0x16, 0xe4, 0x7d, 0xcc, 0xfd, 0xde, 0x0f, 0xe4, + 0x9e, 0x9b, 0xb9, 0x46, 0xa6, 0x59, 0xb2, 0xb7, 0xa5, 0x70, 0x45, 0xee, 0xb9, 0x75, 0x0d, 0xe5, + 0x51, 0x03, 0xd2, 0x4e, 0xbf, 0x0b, 0x05, 0x46, 0x87, 0x97, 0xdd, 0x9e, 0x43, 0xfa, 0x41, 0xac, + 0x1a, 0x91, 0xb1, 0x41, 0x49, 0x1d, 0xa9, 0xc8, 0xfd, 0x74, 0x00, 0x89, 0x3d, 0x55, 0x70, 0xc6, + 0xde, 0x56, 0xc2, 0x67, 0xb1, 0x67, 0xfd, 0x8f, 0xa0, 0x74, 0x4b, 0x30, 0x73, 0xfd, 0xf5, 0xf8, + 0x69, 0x31, 0x2a, 0x90, 0xf1, 0x78, 0x68, 0x6e, 0xaa, 0x5d, 0xe4, 0x47, 0xe3, 0x43, 0xd8, 0x4d, + 0x42, 0xec, 0x12, 0x9f, 0x86, 0x1e, 0x61, 0xbd, 0x3e, 0xa3, 0x83, 0x44, 0xf5, 0xad, 0x68, 0x57, + 0x26, 0x1e, 0x7c, 0x21, 0x75, 0xeb, 0x67, 0x04, 0xc5, 0xcf, 0xc3, 0x01, 0x5f, 0x6e, 0xb9, 0x9d, + 0xce, 0x77, 0x67, 0xfd, 0x40, 0xf8, 0x03, 0x47, 0x5e, 0x81, 0xf6, 0x43, 0x10, 0x86, 0xc1, 0x83, + 0x20, 0xae, 0xdf, 0xd6, 0xc7, 0x7f, 0xe4, 0x05, 0x5c, 0xb0, 0xc0, 0x19, 0x08, 0xe2, 0xb5, 0x47, + 0x10, 0x6d, 0xc5, 0x94, 0x46, 0x24, 0x8e, 0x93, 0x53, 0xeb, 0x8f, 0x5f, 0x05, 0x00, 0x00, 0xff, + 0xff, 0x3b, 0xfd, 0x8e, 0x53, 0x87, 0x10, 0x00, 0x00, }