Load failed if collection beyonds the memory limit (#7434)

Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
pull/7527/head
bigsheeper 2021-09-07 11:35:18 +08:00 committed by GitHub
parent d15d3fa0ac
commit b7103357fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 397 additions and 246 deletions

View File

@ -349,6 +349,7 @@ func (s *Server) GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInf
}
segmentIDs := s.meta.GetSegmentsOfPartition(collectionID, partitionID)
segment2Binlogs := make(map[UniqueID][]*datapb.FieldBinlog)
segmentsNumOfRows := make(map[UniqueID]int64)
for _, id := range segmentIDs {
segment := s.meta.GetSegment(id)
if segment == nil {
@ -374,12 +375,15 @@ func (s *Server) GetRecoveryInfo(ctx context.Context, req *datapb.GetRecoveryInf
}
segment2Binlogs[id] = append(segment2Binlogs[id], fieldBinlogs)
}
segmentsNumOfRows[id] = segment.NumOfRows
}
binlogs := make([]*datapb.SegmentBinlogs, 0, len(segment2Binlogs))
for segmentID, fieldBinlogs := range segment2Binlogs {
sbl := &datapb.SegmentBinlogs{
SegmentID: segmentID,
NumOfRows: segmentsNumOfRows[segmentID],
FieldBinlogs: fieldBinlogs,
}
binlogs = append(binlogs, sbl)

View File

@ -251,6 +251,7 @@ message DataNodeInfo {
message SegmentBinlogs {
int64 segmentID = 1;
repeated FieldBinlog fieldBinlogs = 2;
int64 num_of_rows = 3;
}
message FieldBinlog{

View File

@ -1833,6 +1833,7 @@ func (m *DataNodeInfo) GetChannels() []*ChannelStatus {
type SegmentBinlogs struct {
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
FieldBinlogs []*FieldBinlog `protobuf:"bytes,2,rep,name=fieldBinlogs,proto3" json:"fieldBinlogs,omitempty"`
NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -1877,6 +1878,13 @@ func (m *SegmentBinlogs) GetFieldBinlogs() []*FieldBinlog {
return nil
}
func (m *SegmentBinlogs) GetNumOfRows() int64 {
if m != nil {
return m.NumOfRows
}
return 0
}
type FieldBinlog struct {
FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
Binlogs []string `protobuf:"bytes,2,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
@ -2333,132 +2341,132 @@ func init() {
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
var fileDescriptor_82cd95f524594f49 = []byte{
// 1992 bytes of a gzipped FileDescriptorProto
// 1994 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5a, 0xdb, 0x6f, 0x1b, 0x59,
0x19, 0xef, 0x78, 0x72, 0xb1, 0x3f, 0x3b, 0x4e, 0x72, 0x28, 0x59, 0xe3, 0x76, 0xd3, 0x74, 0x60,
0xdb, 0x6c, 0x61, 0x93, 0xad, 0x0b, 0x62, 0x45, 0x59, 0xd0, 0x36, 0xde, 0x46, 0x11, 0x49, 0x09,
0x93, 0xee, 0xae, 0xc4, 0x3e, 0x58, 0x13, 0xfb, 0xc4, 0x19, 0xea, 0x99, 0xf1, 0xce, 0x39, 0x4e,
0xd3, 0xa7, 0xae, 0x8a, 0xb4, 0x08, 0x84, 0xb8, 0x08, 0xf1, 0x86, 0x04, 0xe2, 0x09, 0x89, 0x17,
0xfe, 0x0c, 0xfe, 0x25, 0xde, 0xd0, 0xb9, 0xce, 0xd5, 0xf6, 0xc4, 0xd9, 0x36, 0x6f, 0x3e, 0x67,
0xbe, 0xdb, 0xf9, 0xce, 0x77, 0xf9, 0x9d, 0x2f, 0x81, 0x95, 0x9e, 0x43, 0x9d, 0x4e, 0x37, 0x08,
0xc2, 0xde, 0xd6, 0x30, 0x0c, 0x68, 0x80, 0x56, 0x3d, 0x77, 0x70, 0x36, 0x22, 0x62, 0xb5, 0xc5,
0x3e, 0x37, 0x6b, 0xdd, 0xc0, 0xf3, 0x02, 0x5f, 0x6c, 0x35, 0xeb, 0xae, 0x4f, 0x71, 0xe8, 0x3b,
0x03, 0xb9, 0xae, 0xc5, 0x19, 0x9a, 0x35, 0xd2, 0x3d, 0xc5, 0x9e, 0x23, 0x56, 0xd6, 0x39, 0xd4,
0x1e, 0x0f, 0x46, 0xe4, 0xd4, 0xc6, 0x5f, 0x8c, 0x30, 0xa1, 0xe8, 0x7d, 0x98, 0x3b, 0x76, 0x08,
0x6e, 0x18, 0x1b, 0xc6, 0x66, 0xb5, 0x75, 0x73, 0x2b, 0xa1, 0x4b, 0x6a, 0x39, 0x20, 0xfd, 0x47,
0x0e, 0xc1, 0x36, 0xa7, 0x44, 0x08, 0xe6, 0x7a, 0xc7, 0x7b, 0xed, 0x46, 0x69, 0xc3, 0xd8, 0x34,
0x6d, 0xfe, 0x1b, 0x59, 0x50, 0xeb, 0x06, 0x83, 0x01, 0xee, 0x52, 0x37, 0xf0, 0xf7, 0xda, 0x8d,
0x39, 0xfe, 0x2d, 0xb1, 0x67, 0xfd, 0xcd, 0x80, 0x25, 0xa9, 0x9a, 0x0c, 0x03, 0x9f, 0x60, 0xf4,
0x00, 0x16, 0x08, 0x75, 0xe8, 0x88, 0x48, 0xed, 0x37, 0x72, 0xb5, 0x1f, 0x71, 0x12, 0x5b, 0x92,
0x16, 0x52, 0x6f, 0x66, 0xd5, 0xa3, 0x75, 0x00, 0x82, 0xfb, 0x1e, 0xf6, 0xe9, 0x5e, 0x9b, 0x34,
0xe6, 0x36, 0xcc, 0x4d, 0xd3, 0x8e, 0xed, 0x58, 0x7f, 0x36, 0x60, 0xe5, 0x48, 0x2d, 0x95, 0x77,
0xae, 0xc3, 0x7c, 0x37, 0x18, 0xf9, 0x94, 0x1b, 0xb8, 0x64, 0x8b, 0x05, 0xba, 0x0d, 0xb5, 0xee,
0xa9, 0xe3, 0xfb, 0x78, 0xd0, 0xf1, 0x1d, 0x0f, 0x73, 0x53, 0x2a, 0x76, 0x55, 0xee, 0x3d, 0x71,
0x3c, 0x5c, 0xc8, 0xa2, 0x0d, 0xa8, 0x0e, 0x9d, 0x90, 0xba, 0x09, 0x9f, 0xc5, 0xb7, 0xac, 0x7f,
0x18, 0xb0, 0xf6, 0x11, 0x21, 0x6e, 0xdf, 0xcf, 0x58, 0xb6, 0x06, 0x0b, 0x7e, 0xd0, 0xc3, 0x7b,
0x6d, 0x6e, 0x9a, 0x69, 0xcb, 0x15, 0xba, 0x01, 0x95, 0x21, 0xc6, 0x61, 0x27, 0x0c, 0x06, 0xca,
0xb0, 0x32, 0xdb, 0xb0, 0x83, 0x01, 0x46, 0xbf, 0x80, 0x55, 0x92, 0x12, 0x44, 0x1a, 0xe6, 0x86,
0xb9, 0x59, 0x6d, 0x7d, 0x7b, 0x2b, 0x13, 0x65, 0x5b, 0x69, 0xa5, 0x76, 0x96, 0xdb, 0xfa, 0xb2,
0x04, 0xdf, 0xd0, 0x74, 0xc2, 0x56, 0xf6, 0x9b, 0x79, 0x8e, 0xe0, 0xbe, 0x36, 0x4f, 0x2c, 0x8a,
0x78, 0x4e, 0xbb, 0xdc, 0x8c, 0xbb, 0xbc, 0x40, 0x80, 0xa5, 0xfd, 0x39, 0x9f, 0xf1, 0x27, 0xba,
0x05, 0x55, 0x7c, 0x3e, 0x74, 0x43, 0xdc, 0xa1, 0xae, 0x87, 0x1b, 0x0b, 0x1b, 0xc6, 0xe6, 0x9c,
0x0d, 0x62, 0xeb, 0xa9, 0xeb, 0xc5, 0x23, 0x72, 0xb1, 0x70, 0x44, 0x5a, 0xff, 0x34, 0xe0, 0xad,
0xcc, 0x2d, 0xc9, 0x10, 0xb7, 0x61, 0x85, 0x9f, 0x3c, 0xf2, 0x0c, 0x0b, 0x76, 0xe6, 0xf0, 0x3b,
0x93, 0x1c, 0x1e, 0x91, 0xdb, 0x19, 0xfe, 0x98, 0x91, 0xa5, 0xe2, 0x46, 0x3e, 0x83, 0xb7, 0x76,
0x31, 0x95, 0x0a, 0xd8, 0x37, 0x4c, 0x66, 0x2f, 0x01, 0xc9, 0x5c, 0x2a, 0x65, 0x72, 0xe9, 0x3f,
0x25, 0x9d, 0x4b, 0x5c, 0xd5, 0x9e, 0x7f, 0x12, 0xa0, 0x9b, 0x50, 0xd1, 0x24, 0x32, 0x2a, 0xa2,
0x0d, 0xf4, 0x43, 0x98, 0x67, 0x96, 0x8a, 0x90, 0xa8, 0xb7, 0x6e, 0xe7, 0x9f, 0x29, 0x26, 0xd3,
0x16, 0xf4, 0x68, 0x0f, 0xea, 0x84, 0x3a, 0x21, 0xed, 0x0c, 0x03, 0xc2, 0xef, 0x99, 0x07, 0x4e,
0xb5, 0x65, 0x25, 0x25, 0xe8, 0x12, 0x79, 0x40, 0xfa, 0x87, 0x92, 0xd2, 0x5e, 0xe2, 0x9c, 0x6a,
0x89, 0x3e, 0x86, 0x1a, 0xf6, 0x7b, 0x91, 0xa0, 0xb9, 0xc2, 0x82, 0xaa, 0xd8, 0xef, 0x69, 0x31,
0xd1, 0xfd, 0xcc, 0x17, 0xbf, 0x9f, 0xdf, 0x1b, 0xd0, 0xc8, 0x5e, 0xd0, 0x65, 0x0a, 0xe5, 0x43,
0xc1, 0x84, 0xc5, 0x05, 0x4d, 0xcc, 0x70, 0x7d, 0x49, 0xb6, 0x64, 0xb1, 0x5c, 0xf8, 0x66, 0x64,
0x0d, 0xff, 0xf2, 0xda, 0x82, 0xe5, 0xd7, 0x06, 0xac, 0xa5, 0x75, 0x5d, 0xe6, 0xdc, 0xdf, 0x87,
0x79, 0xd7, 0x3f, 0x09, 0xd4, 0xb1, 0xd7, 0x27, 0xe4, 0x19, 0xd3, 0x25, 0x88, 0x2d, 0x0f, 0x6e,
0xec, 0x62, 0xba, 0xe7, 0x13, 0x1c, 0xd2, 0x47, 0xae, 0x3f, 0x08, 0xfa, 0x87, 0x0e, 0x3d, 0xbd,
0x44, 0x8e, 0x24, 0xc2, 0xbd, 0x94, 0x0a, 0x77, 0xeb, 0x5f, 0x06, 0xdc, 0xcc, 0xd7, 0x27, 0x8f,
0xde, 0x84, 0xf2, 0x89, 0x8b, 0x07, 0x3d, 0xe6, 0x33, 0x83, 0xfb, 0x4c, 0xaf, 0x59, 0xae, 0x0c,
0x19, 0xb1, 0x3c, 0xe1, 0xed, 0x31, 0x01, 0x7a, 0x44, 0x43, 0xd7, 0xef, 0xef, 0xbb, 0x84, 0xda,
0x82, 0x3e, 0xe6, 0x4f, 0xb3, 0x78, 0x64, 0xfe, 0xce, 0x80, 0xf5, 0x5d, 0x4c, 0x77, 0x74, 0xa9,
0x65, 0xdf, 0x5d, 0x42, 0xdd, 0x2e, 0x79, 0xbd, 0x20, 0x22, 0xa7, 0x67, 0x5a, 0x7f, 0x34, 0xe0,
0xd6, 0x58, 0x63, 0xa4, 0xeb, 0x64, 0x29, 0x51, 0x85, 0x36, 0xbf, 0x94, 0xfc, 0x0c, 0xbf, 0xf8,
0xd4, 0x19, 0x8c, 0xf0, 0xa1, 0xe3, 0x86, 0xa2, 0x94, 0xcc, 0x58, 0x58, 0xff, 0x6d, 0xc0, 0xdb,
0xbb, 0x98, 0x1e, 0xaa, 0x36, 0x73, 0x85, 0xde, 0x29, 0x80, 0x28, 0xfe, 0x20, 0x2e, 0x33, 0xd7,
0xda, 0x2b, 0x71, 0xdf, 0x3a, 0xcf, 0x83, 0x58, 0x42, 0xee, 0x08, 0x2c, 0x20, 0x9d, 0x67, 0xfd,
0xb5, 0x04, 0xb5, 0x4f, 0x25, 0x3e, 0xe0, 0x6d, 0x24, 0xed, 0x07, 0x23, 0xdf, 0x0f, 0x31, 0x48,
0x91, 0x87, 0x32, 0x76, 0x61, 0x89, 0x60, 0xfc, 0x6c, 0x96, 0xa6, 0x51, 0x63, 0x8c, 0xba, 0xd8,
0xef, 0xc3, 0xea, 0xc8, 0x3f, 0x61, 0xb0, 0x16, 0xf7, 0xe4, 0x29, 0x04, 0xba, 0x9c, 0x5e, 0x79,
0xb2, 0x8c, 0x68, 0x13, 0x96, 0xd3, 0xb2, 0xe6, 0x79, 0xf2, 0xa7, 0xb7, 0xad, 0xdf, 0x1a, 0xb0,
0xf6, 0x99, 0x43, 0xbb, 0xa7, 0x6d, 0x4f, 0x7a, 0xec, 0x12, 0xf1, 0xf6, 0x21, 0x54, 0xce, 0xa4,
0x77, 0x54, 0x51, 0xb9, 0x95, 0x63, 0x7c, 0xfc, 0x1e, 0xec, 0x88, 0x83, 0xc1, 0xd4, 0xeb, 0x1c,
0xd9, 0x2b, 0xeb, 0xde, 0x7c, 0xe4, 0x4f, 0x43, 0xf7, 0xe7, 0x00, 0xd2, 0xb8, 0x03, 0xd2, 0x9f,
0xc1, 0xae, 0x0f, 0x60, 0x51, 0x4a, 0x93, 0xc1, 0x3d, 0xed, 0x72, 0x15, 0xb9, 0xf5, 0x09, 0xd4,
0xda, 0xed, 0x7d, 0xee, 0x9e, 0x03, 0x4c, 0x9d, 0x42, 0xf1, 0x7b, 0x1b, 0x6a, 0xc7, 0xbc, 0x27,
0x74, 0xa2, 0x3a, 0x5f, 0xb1, 0xab, 0xc7, 0x51, 0x9f, 0xb0, 0x5e, 0x42, 0x3d, 0x2a, 0x82, 0x3c,
0x31, 0xea, 0x50, 0xd2, 0xe2, 0x4a, 0x7b, 0x6d, 0xf4, 0x21, 0x2c, 0x88, 0x97, 0x9f, 0xb4, 0xf8,
0x9d, 0xa4, 0xc5, 0xf2, 0x55, 0x18, 0xab, 0xa4, 0x7c, 0xc3, 0x96, 0x4c, 0xcc, 0xa3, 0xba, 0x70,
0x88, 0x47, 0x82, 0x69, 0xc7, 0x76, 0xac, 0xff, 0x99, 0x50, 0x8d, 0x1d, 0x38, 0xa3, 0x3e, 0x7d,
0xce, 0xd2, 0xf4, 0x7a, 0x65, 0x66, 0x11, 0xfb, 0x3b, 0x50, 0x77, 0x79, 0x8f, 0xec, 0xc8, 0x68,
0xe3, 0x45, 0xad, 0x62, 0x2f, 0x89, 0x5d, 0x19, 0xfa, 0x68, 0x1d, 0xaa, 0xfe, 0xc8, 0xeb, 0x04,
0x27, 0x9d, 0x30, 0x78, 0x4e, 0x24, 0xf4, 0xaf, 0xf8, 0x23, 0xef, 0xe7, 0x27, 0x76, 0xf0, 0x9c,
0x44, 0xe8, 0x72, 0xe1, 0x82, 0xe8, 0x72, 0x1d, 0xaa, 0x9e, 0x73, 0xce, 0xa4, 0x76, 0xfc, 0x91,
0xc7, 0x5f, 0x05, 0xa6, 0x5d, 0xf1, 0x9c, 0x73, 0x3b, 0x78, 0xfe, 0x64, 0xe4, 0xa1, 0x4d, 0x58,
0x19, 0x38, 0x84, 0x76, 0xe2, 0xcf, 0x8a, 0x32, 0x7f, 0x56, 0xd4, 0xd9, 0xfe, 0xc7, 0xd1, 0xd3,
0x22, 0x8b, 0x53, 0x2b, 0x97, 0xc0, 0xa9, 0x3d, 0x6f, 0x10, 0x09, 0x82, 0xe2, 0x38, 0xb5, 0xe7,
0x0d, 0xb4, 0x98, 0x0f, 0x60, 0x51, 0x44, 0x14, 0x69, 0x54, 0xc7, 0x16, 0xac, 0xc7, 0x0c, 0x74,
0x08, 0x80, 0x62, 0x2b, 0x72, 0xeb, 0x25, 0x5c, 0x8f, 0x9c, 0x15, 0x33, 0x2c, 0x7b, 0x46, 0x63,
0xd6, 0x33, 0x4e, 0x86, 0x4f, 0xbf, 0x31, 0x61, 0xed, 0xc8, 0x39, 0xc3, 0xaf, 0x1f, 0xa9, 0x15,
0xaa, 0x3e, 0xfb, 0xb0, 0xca, 0xc1, 0x59, 0x2b, 0x66, 0xcf, 0x84, 0x26, 0x10, 0xf7, 0x69, 0x96,
0x11, 0xfd, 0x94, 0x75, 0x2f, 0xdc, 0x7d, 0x76, 0x18, 0xb8, 0xaa, 0x01, 0x54, 0x5b, 0x6f, 0xe7,
0xc8, 0xd9, 0xd1, 0x54, 0x76, 0x9c, 0x03, 0x1d, 0xc2, 0x72, 0xf2, 0x1a, 0x48, 0x63, 0x81, 0x0b,
0xb9, 0x3b, 0xf1, 0x09, 0x10, 0x79, 0xdf, 0xae, 0x27, 0x2e, 0x83, 0xa0, 0x06, 0x2c, 0xca, 0x06,
0xc4, 0x53, 0xa0, 0x6c, 0xab, 0x25, 0x43, 0x87, 0x10, 0xd9, 0x31, 0xe5, 0x91, 0xf7, 0x13, 0x28,
0xeb, 0xc8, 0x28, 0x15, 0x8e, 0x0c, 0xcd, 0x93, 0x4e, 0x73, 0x33, 0x95, 0xe6, 0xd6, 0x2b, 0x03,
0x96, 0xda, 0x0e, 0x75, 0x9e, 0x04, 0x3d, 0xfc, 0x74, 0xc6, 0x4a, 0x5f, 0x60, 0x44, 0x71, 0x13,
0x2a, 0x2c, 0xd1, 0x09, 0x75, 0xbc, 0x21, 0x37, 0x62, 0xce, 0x8e, 0x36, 0xd8, 0x7b, 0x66, 0x49,
0xd6, 0xa5, 0x23, 0x3d, 0xb2, 0xe2, 0xa2, 0x0c, 0x2e, 0x8a, 0xff, 0x46, 0x3f, 0x4a, 0xbe, 0x77,
0xbf, 0x93, 0x7b, 0xbd, 0x5c, 0x08, 0xef, 0xf2, 0x89, 0xa2, 0x54, 0x04, 0x28, 0x7f, 0x69, 0x40,
0x4d, 0xb9, 0x82, 0xd7, 0xe7, 0x06, 0x2c, 0x3a, 0xbd, 0x5e, 0x88, 0x09, 0x91, 0x76, 0xa8, 0x25,
0xfb, 0x72, 0x86, 0x43, 0xa2, 0x2e, 0xc5, 0xb4, 0xd5, 0x12, 0xfd, 0x18, 0xca, 0x1a, 0x16, 0x88,
0x31, 0xd1, 0xc6, 0x78, 0x3b, 0x25, 0xb0, 0xd3, 0x1c, 0x56, 0x08, 0x75, 0x19, 0x5c, 0x22, 0xba,
0xc9, 0x94, 0xe8, 0x78, 0x04, 0xb5, 0x93, 0x28, 0x33, 0x26, 0xbd, 0xdf, 0xe2, 0x09, 0x94, 0xe0,
0xb1, 0x3e, 0x82, 0x6a, 0xec, 0x23, 0x8f, 0x5b, 0xf1, 0x6a, 0x92, 0xea, 0xd4, 0x92, 0x7d, 0x39,
0x8e, 0xe9, 0xa9, 0x44, 0xc5, 0xed, 0xbf, 0x06, 0x1f, 0x95, 0xd8, 0xb8, 0x1b, 0x9c, 0xe1, 0xf0,
0xc5, 0xe5, 0x1f, 0xa4, 0x0f, 0x63, 0x5e, 0x2c, 0x08, 0xae, 0x34, 0x03, 0x7a, 0x18, 0xd9, 0x69,
0xe6, 0xe1, 0xf1, 0x78, 0x0e, 0x4b, 0x27, 0x44, 0x47, 0xf9, 0x93, 0x78, 0x5a, 0x27, 0x8f, 0x32,
0x6b, 0x99, 0xfc, 0x5a, 0x1a, 0xba, 0xf5, 0x17, 0x03, 0xbe, 0xb5, 0x8b, 0xe9, 0xe3, 0x24, 0x9c,
0xbd, 0x6a, 0xab, 0x3c, 0x68, 0xe6, 0x19, 0x75, 0x99, 0x5b, 0x6f, 0x42, 0x99, 0x28, 0x0c, 0x2f,
0x86, 0x1e, 0x7a, 0x6d, 0x7d, 0x65, 0x40, 0x43, 0x6a, 0xe1, 0x3a, 0x77, 0x02, 0x6f, 0x38, 0xc0,
0x14, 0xf7, 0xde, 0x34, 0x38, 0xfd, 0xbb, 0x01, 0x2b, 0xf1, 0x32, 0xc3, 0x2b, 0xc5, 0x0f, 0x60,
0x9e, 0x63, 0x7b, 0x69, 0xc1, 0xd4, 0x60, 0x15, 0xd4, 0x2c, 0xa3, 0x78, 0xd7, 0x78, 0x4a, 0x54,
0x19, 0x91, 0xcb, 0xa8, 0xd6, 0x99, 0x17, 0xae, 0x75, 0xd6, 0x11, 0xac, 0x29, 0x4f, 0x45, 0x79,
0xcd, 0x81, 0xf4, 0xf8, 0xdc, 0xbe, 0x05, 0xd5, 0x18, 0x7c, 0x96, 0x15, 0x1c, 0x22, 0xf4, 0x7c,
0xef, 0x3e, 0xac, 0x66, 0x14, 0xa2, 0x3a, 0xc0, 0x27, 0x7e, 0x57, 0xde, 0xc4, 0xca, 0x35, 0x54,
0x83, 0xb2, 0xba, 0x97, 0x15, 0xa3, 0xf5, 0x6a, 0x09, 0x2a, 0xac, 0x9e, 0xee, 0x04, 0x41, 0xd8,
0x43, 0x43, 0x40, 0x7c, 0x0a, 0xe1, 0x0d, 0x03, 0x5f, 0x8f, 0xeb, 0xd0, 0xfb, 0x63, 0x9a, 0x59,
0x96, 0x54, 0xc6, 0x7b, 0xf3, 0xce, 0x18, 0x8e, 0x14, 0xb9, 0x75, 0x0d, 0x79, 0x5c, 0x23, 0x43,
0x92, 0x4f, 0xdd, 0xee, 0x33, 0x85, 0x7b, 0x27, 0x68, 0x4c, 0x91, 0x2a, 0x8d, 0xa9, 0x29, 0xa0,
0x5c, 0x88, 0x51, 0x91, 0x0a, 0x78, 0xeb, 0x1a, 0xfa, 0x02, 0xae, 0xb3, 0x67, 0xb9, 0x9e, 0x0e,
0x28, 0x85, 0xad, 0xf1, 0x0a, 0x33, 0xc4, 0x17, 0x54, 0xb9, 0x0f, 0xf3, 0x3c, 0x19, 0x50, 0x5e,
0xc0, 0xc5, 0xff, 0x66, 0xd5, 0xdc, 0x18, 0x4f, 0xa0, 0xa5, 0xfd, 0x0a, 0x96, 0x53, 0x33, 0x79,
0xf4, 0x6e, 0x0e, 0x5b, 0xfe, 0x5f, 0x57, 0x9a, 0xf7, 0x8a, 0x90, 0x6a, 0x5d, 0x7d, 0xa8, 0x27,
0x67, 0x18, 0x68, 0x33, 0x87, 0x3f, 0x77, 0x9e, 0xda, 0x7c, 0xb7, 0x00, 0xa5, 0x56, 0xe4, 0xc1,
0x4a, 0x7a, 0x46, 0x8c, 0xee, 0x4d, 0x14, 0x90, 0x0c, 0xb7, 0xef, 0x16, 0xa2, 0xd5, 0xea, 0x5e,
0xf0, 0x20, 0xc8, 0xcc, 0x28, 0xd1, 0x56, 0xbe, 0x98, 0x71, 0xc3, 0xd3, 0xe6, 0x76, 0x61, 0x7a,
0xad, 0xfa, 0x95, 0x68, 0xc2, 0x79, 0x73, 0x3e, 0x74, 0x3f, 0x5f, 0xdc, 0x84, 0x01, 0x65, 0xb3,
0x75, 0x11, 0x16, 0x6d, 0xc4, 0x4b, 0xde, 0x3d, 0x73, 0x66, 0x65, 0xe9, 0xbc, 0x53, 0xf2, 0xc6,
0x0f, 0x01, 0x9b, 0xf7, 0x2f, 0xc0, 0xa1, 0x0d, 0x08, 0xd2, 0x53, 0x78, 0x95, 0x86, 0xdb, 0x53,
0xa3, 0x66, 0xb6, 0x1c, 0xfc, 0x1c, 0x96, 0x53, 0xcf, 0xaa, 0xdc, 0xac, 0xc9, 0x7f, 0x7a, 0x35,
0x27, 0xf5, 0x45, 0x91, 0x92, 0x29, 0x30, 0x82, 0xc6, 0x44, 0x7f, 0x0e, 0x60, 0x69, 0xde, 0x2b,
0x42, 0xaa, 0x0f, 0x42, 0x78, 0xb9, 0x4c, 0x35, 0x74, 0xf4, 0xbd, 0x7c, 0x19, 0xf9, 0x60, 0xa4,
0xf9, 0x5e, 0x41, 0x6a, 0xad, 0xb4, 0x03, 0xb0, 0x8b, 0xe9, 0x01, 0xa6, 0x21, 0x8b, 0x91, 0x3b,
0xb9, 0x2e, 0x8f, 0x08, 0x94, 0x9a, 0xbb, 0x53, 0xe9, 0x94, 0x82, 0xd6, 0x57, 0x73, 0x50, 0x56,
0xa0, 0xfe, 0x0a, 0x7a, 0xd0, 0x15, 0x34, 0x85, 0xcf, 0x61, 0x39, 0x35, 0xe5, 0xcc, 0x8d, 0x99,
0xfc, 0x49, 0xe8, 0xb4, 0x80, 0xfc, 0x4c, 0xfe, 0x43, 0x82, 0x8e, 0x8f, 0xbb, 0xe3, 0x1a, 0x4b,
0x3a, 0x34, 0xa6, 0x08, 0x7e, 0xdd, 0x81, 0xf0, 0xe8, 0xc1, 0x2f, 0xef, 0xf7, 0x5d, 0x7a, 0x3a,
0x3a, 0x66, 0xaa, 0xb7, 0x05, 0xe5, 0x7b, 0x6e, 0x20, 0x7f, 0x6d, 0xab, 0x1b, 0xd8, 0xe6, 0x92,
0xb6, 0xd9, 0x39, 0x86, 0xc7, 0xc7, 0x0b, 0x7c, 0xf5, 0xe0, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff,
0xd5, 0xbb, 0xa2, 0xe1, 0x62, 0x22, 0x00, 0x00,
0xd3, 0xa7, 0xae, 0x8a, 0xb4, 0x08, 0x84, 0xb8, 0x8a, 0x37, 0x24, 0x10, 0x4f, 0x48, 0xbc, 0xf0,
0x67, 0xf0, 0x2f, 0xf1, 0x86, 0xce, 0x75, 0xae, 0xb6, 0x27, 0x0e, 0x6d, 0xde, 0x7c, 0xce, 0x7c,
0xb7, 0xf3, 0x9d, 0xef, 0xf2, 0x3b, 0x5f, 0x02, 0x2b, 0x3d, 0x87, 0x3a, 0x9d, 0x6e, 0x10, 0x84,
0xbd, 0xad, 0x61, 0x18, 0xd0, 0x00, 0xad, 0x7a, 0xee, 0xe0, 0x6c, 0x44, 0xc4, 0x6a, 0x8b, 0x7d,
0x6e, 0xd6, 0xba, 0x81, 0xe7, 0x05, 0xbe, 0xd8, 0x6a, 0xd6, 0x5d, 0x9f, 0xe2, 0xd0, 0x77, 0x06,
0x72, 0x5d, 0x8b, 0x33, 0x34, 0x6b, 0xa4, 0x7b, 0x8a, 0x3d, 0x47, 0xac, 0xac, 0x73, 0xa8, 0x3d,
0x1e, 0x8c, 0xc8, 0xa9, 0x8d, 0xbf, 0x18, 0x61, 0x42, 0xd1, 0xfb, 0x30, 0x77, 0xec, 0x10, 0xdc,
0x30, 0x36, 0x8c, 0xcd, 0x6a, 0xeb, 0xe6, 0x56, 0x42, 0x97, 0xd4, 0x72, 0x40, 0xfa, 0x8f, 0x1c,
0x82, 0x6d, 0x4e, 0x89, 0x10, 0xcc, 0xf5, 0x8e, 0xf7, 0xda, 0x8d, 0xd2, 0x86, 0xb1, 0x69, 0xda,
0xfc, 0x37, 0xb2, 0xa0, 0xd6, 0x0d, 0x06, 0x03, 0xdc, 0xa5, 0x6e, 0xe0, 0xef, 0xb5, 0x1b, 0x73,
0xfc, 0x5b, 0x62, 0xcf, 0xfa, 0xab, 0x01, 0x4b, 0x52, 0x35, 0x19, 0x06, 0x3e, 0xc1, 0xe8, 0x01,
0x2c, 0x10, 0xea, 0xd0, 0x11, 0x91, 0xda, 0x6f, 0xe4, 0x6a, 0x3f, 0xe2, 0x24, 0xb6, 0x24, 0x2d,
0xa4, 0xde, 0xcc, 0xaa, 0x47, 0xeb, 0x00, 0x04, 0xf7, 0x3d, 0xec, 0xd3, 0xbd, 0x36, 0x69, 0xcc,
0x6d, 0x98, 0x9b, 0xa6, 0x1d, 0xdb, 0xb1, 0xfe, 0x68, 0xc0, 0xca, 0x91, 0x5a, 0x2a, 0xef, 0x5c,
0x87, 0xf9, 0x6e, 0x30, 0xf2, 0x29, 0x37, 0x70, 0xc9, 0x16, 0x0b, 0x74, 0x1b, 0x6a, 0xdd, 0x53,
0xc7, 0xf7, 0xf1, 0xa0, 0xe3, 0x3b, 0x1e, 0xe6, 0xa6, 0x54, 0xec, 0xaa, 0xdc, 0x7b, 0xe2, 0x78,
0xb8, 0x90, 0x45, 0x1b, 0x50, 0x1d, 0x3a, 0x21, 0x75, 0x13, 0x3e, 0x8b, 0x6f, 0x59, 0x7f, 0x37,
0x60, 0xed, 0x23, 0x42, 0xdc, 0xbe, 0x9f, 0xb1, 0x6c, 0x0d, 0x16, 0xfc, 0xa0, 0x87, 0xf7, 0xda,
0xdc, 0x34, 0xd3, 0x96, 0x2b, 0x74, 0x03, 0x2a, 0x43, 0x8c, 0xc3, 0x4e, 0x18, 0x0c, 0x94, 0x61,
0x65, 0xb6, 0x61, 0x07, 0x03, 0x8c, 0x7e, 0x06, 0xab, 0x24, 0x25, 0x88, 0x34, 0xcc, 0x0d, 0x73,
0xb3, 0xda, 0xfa, 0xe6, 0x56, 0x26, 0xca, 0xb6, 0xd2, 0x4a, 0xed, 0x2c, 0xb7, 0xf5, 0x65, 0x09,
0xbe, 0xa6, 0xe9, 0x84, 0xad, 0xec, 0x37, 0xf3, 0x1c, 0xc1, 0x7d, 0x6d, 0x9e, 0x58, 0x14, 0xf1,
0x9c, 0x76, 0xb9, 0x19, 0x77, 0x79, 0x81, 0x00, 0x4b, 0xfb, 0x73, 0x3e, 0xe3, 0x4f, 0x74, 0x0b,
0xaa, 0xf8, 0x7c, 0xe8, 0x86, 0xb8, 0x43, 0x5d, 0x0f, 0x37, 0x16, 0x36, 0x8c, 0xcd, 0x39, 0x1b,
0xc4, 0xd6, 0x53, 0xd7, 0x8b, 0x47, 0xe4, 0x62, 0xe1, 0x88, 0xb4, 0xfe, 0x61, 0xc0, 0x5b, 0x99,
0x5b, 0x92, 0x21, 0x6e, 0xc3, 0x0a, 0x3f, 0x79, 0xe4, 0x19, 0x16, 0xec, 0xcc, 0xe1, 0x77, 0x26,
0x39, 0x3c, 0x22, 0xb7, 0x33, 0xfc, 0x31, 0x23, 0x4b, 0xc5, 0x8d, 0x7c, 0x06, 0x6f, 0xed, 0x62,
0x2a, 0x15, 0xb0, 0x6f, 0x98, 0xcc, 0x5e, 0x02, 0x92, 0xb9, 0x54, 0xca, 0xe4, 0xd2, 0xbf, 0x4b,
0x3a, 0x97, 0xb8, 0xaa, 0x3d, 0xff, 0x24, 0x40, 0x37, 0xa1, 0xa2, 0x49, 0x64, 0x54, 0x44, 0x1b,
0xe8, 0xfb, 0x30, 0xcf, 0x2c, 0x15, 0x21, 0x51, 0x6f, 0xdd, 0xce, 0x3f, 0x53, 0x4c, 0xa6, 0x2d,
0xe8, 0xd1, 0x1e, 0xd4, 0x09, 0x75, 0x42, 0xda, 0x19, 0x06, 0x84, 0xdf, 0x33, 0x0f, 0x9c, 0x6a,
0xcb, 0x4a, 0x4a, 0xd0, 0x25, 0xf2, 0x80, 0xf4, 0x0f, 0x25, 0xa5, 0xbd, 0xc4, 0x39, 0xd5, 0x12,
0x7d, 0x0c, 0x35, 0xec, 0xf7, 0x22, 0x41, 0x73, 0x85, 0x05, 0x55, 0xb1, 0xdf, 0xd3, 0x62, 0xa2,
0xfb, 0x99, 0x2f, 0x7e, 0x3f, 0xbf, 0x35, 0xa0, 0x91, 0xbd, 0xa0, 0xcb, 0x14, 0xca, 0x87, 0x82,
0x09, 0x8b, 0x0b, 0x9a, 0x98, 0xe1, 0xfa, 0x92, 0x6c, 0xc9, 0x62, 0xb9, 0xf0, 0xf5, 0xc8, 0x1a,
0xfe, 0xe5, 0xb5, 0x05, 0xcb, 0x2f, 0x0d, 0x58, 0x4b, 0xeb, 0xba, 0xcc, 0xb9, 0xbf, 0x0b, 0xf3,
0xae, 0x7f, 0x12, 0xa8, 0x63, 0xaf, 0x4f, 0xc8, 0x33, 0xa6, 0x4b, 0x10, 0x5b, 0x1e, 0xdc, 0xd8,
0xc5, 0x74, 0xcf, 0x27, 0x38, 0xa4, 0x8f, 0x5c, 0x7f, 0x10, 0xf4, 0x0f, 0x1d, 0x7a, 0x7a, 0x89,
0x1c, 0x49, 0x84, 0x7b, 0x29, 0x15, 0xee, 0xd6, 0x3f, 0x0d, 0xb8, 0x99, 0xaf, 0x4f, 0x1e, 0xbd,
0x09, 0xe5, 0x13, 0x17, 0x0f, 0x7a, 0xcc, 0x67, 0x06, 0xf7, 0x99, 0x5e, 0xb3, 0x5c, 0x19, 0x32,
0x62, 0x79, 0xc2, 0xdb, 0x63, 0x02, 0xf4, 0x88, 0x86, 0xae, 0xdf, 0xdf, 0x77, 0x09, 0xb5, 0x05,
0x7d, 0xcc, 0x9f, 0x66, 0xf1, 0xc8, 0xfc, 0x8d, 0x01, 0xeb, 0xbb, 0x98, 0xee, 0xe8, 0x52, 0xcb,
0xbe, 0xbb, 0x84, 0xba, 0x5d, 0xf2, 0x7a, 0x41, 0x44, 0x4e, 0xcf, 0xb4, 0x7e, 0x6f, 0xc0, 0xad,
0xb1, 0xc6, 0x48, 0xd7, 0xc9, 0x52, 0xa2, 0x0a, 0x6d, 0x7e, 0x29, 0xf9, 0x09, 0x7e, 0xf1, 0xa9,
0x33, 0x18, 0xe1, 0x43, 0xc7, 0x0d, 0x45, 0x29, 0x99, 0xb1, 0xb0, 0xfe, 0xcb, 0x80, 0xb7, 0x77,
0x31, 0x3d, 0x54, 0x6d, 0xe6, 0x0a, 0xbd, 0x53, 0x00, 0x51, 0xfc, 0x4e, 0x5c, 0x66, 0xae, 0xb5,
0x57, 0xe2, 0xbe, 0x75, 0x9e, 0x07, 0xb1, 0x84, 0xdc, 0x11, 0x58, 0x40, 0x3a, 0xcf, 0xfa, 0x4b,
0x09, 0x6a, 0x9f, 0x4a, 0x7c, 0xc0, 0xdb, 0x48, 0xda, 0x0f, 0x46, 0xbe, 0x1f, 0x62, 0x90, 0x22,
0x0f, 0x65, 0xec, 0xc2, 0x12, 0xc1, 0xf8, 0xd9, 0x2c, 0x4d, 0xa3, 0xc6, 0x18, 0x75, 0xb1, 0xdf,
0x87, 0xd5, 0x91, 0x7f, 0xc2, 0x60, 0x2d, 0xee, 0xc9, 0x53, 0x08, 0x74, 0x39, 0xbd, 0xf2, 0x64,
0x19, 0xd1, 0x26, 0x2c, 0xa7, 0x65, 0xcd, 0xf3, 0xe4, 0x4f, 0x6f, 0x5b, 0xbf, 0x36, 0x60, 0xed,
0x33, 0x87, 0x76, 0x4f, 0xdb, 0x9e, 0xf4, 0xd8, 0x25, 0xe2, 0xed, 0x43, 0xa8, 0x9c, 0x49, 0xef,
0xa8, 0xa2, 0x72, 0x2b, 0xc7, 0xf8, 0xf8, 0x3d, 0xd8, 0x11, 0x07, 0x83, 0xa9, 0xd7, 0x39, 0xb2,
0x57, 0xd6, 0xbd, 0xf9, 0xc8, 0x9f, 0x86, 0xee, 0xcf, 0x01, 0xa4, 0x71, 0x07, 0xa4, 0x3f, 0x83,
0x5d, 0x1f, 0xc0, 0xa2, 0x94, 0x26, 0x83, 0x7b, 0xda, 0xe5, 0x2a, 0x72, 0xeb, 0x13, 0xa8, 0xb5,
0xdb, 0xfb, 0xdc, 0x3d, 0x07, 0x98, 0x3a, 0x85, 0xe2, 0xf7, 0x36, 0xd4, 0x8e, 0x79, 0x4f, 0xe8,
0x44, 0x75, 0xbe, 0x62, 0x57, 0x8f, 0xa3, 0x3e, 0x61, 0xbd, 0x84, 0x7a, 0x54, 0x04, 0x79, 0x62,
0xd4, 0xa1, 0xa4, 0xc5, 0x95, 0xf6, 0xda, 0xe8, 0x43, 0x58, 0x10, 0x2f, 0x3f, 0x69, 0xf1, 0x3b,
0x49, 0x8b, 0xe5, 0xab, 0x30, 0x56, 0x49, 0xf9, 0x86, 0x2d, 0x99, 0x98, 0x47, 0x75, 0xe1, 0x10,
0x8f, 0x04, 0xd3, 0x8e, 0xed, 0x58, 0xff, 0x35, 0xa1, 0x1a, 0x3b, 0x70, 0x46, 0x7d, 0xfa, 0x9c,
0xa5, 0xe9, 0xf5, 0xca, 0xcc, 0x22, 0xf6, 0x77, 0xa0, 0xee, 0xf2, 0x1e, 0xd9, 0x91, 0xd1, 0xc6,
0x8b, 0x5a, 0xc5, 0x5e, 0x12, 0xbb, 0x32, 0xf4, 0xd1, 0x3a, 0x54, 0xfd, 0x91, 0xd7, 0x09, 0x4e,
0x3a, 0x61, 0xf0, 0x9c, 0x48, 0xe8, 0x5f, 0xf1, 0x47, 0xde, 0x4f, 0x4f, 0xec, 0xe0, 0x39, 0x89,
0xd0, 0xe5, 0xc2, 0x05, 0xd1, 0xe5, 0x3a, 0x54, 0x3d, 0xe7, 0x9c, 0x49, 0xed, 0xf8, 0x23, 0x8f,
0xbf, 0x0a, 0x4c, 0xbb, 0xe2, 0x39, 0xe7, 0x76, 0xf0, 0xfc, 0xc9, 0xc8, 0x43, 0x9b, 0xb0, 0x32,
0x70, 0x08, 0xed, 0xc4, 0x9f, 0x15, 0x65, 0xfe, 0xac, 0xa8, 0xb3, 0xfd, 0x8f, 0xa3, 0xa7, 0x45,
0x16, 0xa7, 0x56, 0x2e, 0x81, 0x53, 0x7b, 0xde, 0x20, 0x12, 0x04, 0xc5, 0x71, 0x6a, 0xcf, 0x1b,
0x68, 0x31, 0x1f, 0xc0, 0xa2, 0x88, 0x28, 0xd2, 0xa8, 0x8e, 0x2d, 0x58, 0x8f, 0x19, 0xe8, 0x10,
0x00, 0xc5, 0x56, 0xe4, 0xd6, 0x4b, 0xb8, 0x1e, 0x39, 0x2b, 0x66, 0x58, 0xf6, 0x8c, 0xc6, 0xac,
0x67, 0x9c, 0x0c, 0x9f, 0x7e, 0x65, 0xc2, 0xda, 0x91, 0x73, 0x86, 0x5f, 0x3f, 0x52, 0x2b, 0x54,
0x7d, 0xf6, 0x61, 0x95, 0x83, 0xb3, 0x56, 0xcc, 0x9e, 0x09, 0x4d, 0x20, 0xee, 0xd3, 0x2c, 0x23,
0xfa, 0x31, 0xeb, 0x5e, 0xb8, 0xfb, 0xec, 0x30, 0x70, 0x55, 0x03, 0xa8, 0xb6, 0xde, 0xce, 0x91,
0xb3, 0xa3, 0xa9, 0xec, 0x38, 0x07, 0x3a, 0x84, 0xe5, 0xe4, 0x35, 0x90, 0xc6, 0x02, 0x17, 0x72,
0x77, 0xe2, 0x13, 0x20, 0xf2, 0xbe, 0x5d, 0x4f, 0x5c, 0x06, 0x41, 0x0d, 0x58, 0x94, 0x0d, 0x88,
0xa7, 0x40, 0xd9, 0x56, 0x4b, 0x86, 0x0e, 0x21, 0xb2, 0x63, 0xca, 0x23, 0xef, 0x47, 0x50, 0xd6,
0x91, 0x51, 0x2a, 0x1c, 0x19, 0x9a, 0x27, 0x9d, 0xe6, 0x66, 0x2a, 0xcd, 0xad, 0x57, 0x06, 0x2c,
0xb5, 0x1d, 0xea, 0x3c, 0x09, 0x7a, 0xf8, 0xe9, 0x8c, 0x95, 0xbe, 0xc0, 0x88, 0xe2, 0x26, 0x54,
0x58, 0xa2, 0x13, 0xea, 0x78, 0x43, 0x6e, 0xc4, 0x9c, 0x1d, 0x6d, 0xb0, 0xf7, 0xcc, 0x92, 0xac,
0x4b, 0x47, 0x7a, 0x64, 0xc5, 0x45, 0x19, 0x5c, 0x14, 0xff, 0x8d, 0x7e, 0x90, 0x7c, 0xef, 0x7e,
0x2b, 0xf7, 0x7a, 0xb9, 0x10, 0xde, 0xe5, 0x13, 0x45, 0xa9, 0x08, 0x50, 0xfe, 0xd2, 0x80, 0x9a,
0x72, 0x05, 0xaf, 0xcf, 0x0d, 0x58, 0x74, 0x7a, 0xbd, 0x10, 0x13, 0x22, 0xed, 0x50, 0x4b, 0xf6,
0xe5, 0x0c, 0x87, 0x44, 0x5d, 0x8a, 0x69, 0xab, 0x25, 0xfa, 0x21, 0x94, 0x35, 0x2c, 0x10, 0x63,
0xa2, 0x8d, 0xf1, 0x76, 0x4a, 0x60, 0xa7, 0x39, 0xac, 0x3f, 0x19, 0x50, 0x97, 0xd1, 0x25, 0xc2,
0x9b, 0x4c, 0x09, 0x8f, 0x47, 0x50, 0x3b, 0x89, 0x52, 0x63, 0xd2, 0x03, 0x2e, 0x9e, 0x41, 0x09,
0x9e, 0xa9, 0x21, 0xf2, 0x11, 0x54, 0x63, 0xcc, 0x3c, 0xb0, 0xc5, 0xb3, 0x4a, 0x9a, 0xa3, 0x96,
0xec, 0xcb, 0x71, 0xcc, 0x8e, 0x4a, 0x54, 0xfd, 0xfe, 0x63, 0xf0, 0x59, 0x8a, 0x8d, 0xbb, 0xc1,
0x19, 0x0e, 0x5f, 0x5c, 0xfe, 0xc5, 0xfa, 0x30, 0xe6, 0xe6, 0x82, 0xe8, 0x4b, 0x33, 0xa0, 0x87,
0x91, 0x9d, 0x66, 0x1e, 0x60, 0x8f, 0x27, 0xb9, 0x74, 0x52, 0x74, 0x94, 0x3f, 0x88, 0xb7, 0x77,
0xf2, 0x28, 0xb3, 0xd6, 0xd1, 0xff, 0x4b, 0xc7, 0xb7, 0xfe, 0x6c, 0xc0, 0x37, 0x76, 0x31, 0x7d,
0x9c, 0xc4, 0xbb, 0x57, 0x6d, 0x95, 0x07, 0xcd, 0x3c, 0xa3, 0x2e, 0x73, 0xeb, 0x4d, 0x28, 0x13,
0x05, 0xf2, 0xc5, 0x54, 0x44, 0xaf, 0xad, 0xaf, 0x0c, 0x68, 0x48, 0x2d, 0x5c, 0xe7, 0x4e, 0xe0,
0x0d, 0x07, 0x98, 0xe2, 0xde, 0x9b, 0x46, 0xaf, 0x7f, 0x33, 0x60, 0x25, 0x5e, 0x87, 0x78, 0x29,
0xf9, 0x1e, 0xcc, 0x73, 0xf0, 0x2f, 0x2d, 0x98, 0x1a, 0xac, 0x82, 0x9a, 0x65, 0x14, 0x6f, 0x2b,
0x4f, 0x89, 0xaa, 0x33, 0x72, 0x19, 0x15, 0x43, 0xf3, 0xc2, 0xc5, 0xd0, 0x3a, 0x82, 0x35, 0xe5,
0xa9, 0x28, 0xaf, 0x39, 0xd2, 0x1e, 0x9f, 0xdb, 0xb7, 0xa0, 0x1a, 0xc3, 0xd7, 0xb2, 0xc4, 0x43,
0x04, 0xaf, 0xef, 0xdd, 0x87, 0xd5, 0x8c, 0x42, 0x54, 0x07, 0xf8, 0xc4, 0xef, 0xca, 0x9b, 0x58,
0xb9, 0x86, 0x6a, 0x50, 0x56, 0xf7, 0xb2, 0x62, 0xb4, 0x5e, 0x2d, 0x41, 0x85, 0x15, 0xdc, 0x9d,
0x20, 0x08, 0x7b, 0x68, 0x08, 0x88, 0x8f, 0x29, 0xbc, 0x61, 0xe0, 0xeb, 0x79, 0x1e, 0x7a, 0x7f,
0x4c, 0xb7, 0xcb, 0x92, 0xca, 0x78, 0x6f, 0xde, 0x19, 0xc3, 0x91, 0x22, 0xb7, 0xae, 0x21, 0x8f,
0x6b, 0x64, 0x50, 0xf3, 0xa9, 0xdb, 0x7d, 0xa6, 0x80, 0xf1, 0x04, 0x8d, 0x29, 0x52, 0xa5, 0x31,
0x35, 0x26, 0x94, 0x0b, 0x31, 0x4b, 0x52, 0x01, 0x6f, 0x5d, 0x43, 0x5f, 0xc0, 0x75, 0xf6, 0x6e,
0xd7, 0xe3, 0x03, 0xa5, 0xb0, 0x35, 0x5e, 0x61, 0x86, 0xf8, 0x82, 0x2a, 0xf7, 0x61, 0x9e, 0x27,
0x03, 0xca, 0x0b, 0xb8, 0xf8, 0x1f, 0xb5, 0x9a, 0x1b, 0xe3, 0x09, 0xb4, 0xb4, 0x5f, 0xc0, 0x72,
0x6a, 0x68, 0x8f, 0xde, 0xcd, 0x61, 0xcb, 0xff, 0xf3, 0x4b, 0xf3, 0x5e, 0x11, 0x52, 0xad, 0xab,
0x0f, 0xf5, 0xe4, 0x90, 0x03, 0x6d, 0xe6, 0xf0, 0xe7, 0x0e, 0x5c, 0x9b, 0xef, 0x16, 0xa0, 0xd4,
0x8a, 0x3c, 0x58, 0x49, 0x0f, 0x91, 0xd1, 0xbd, 0x89, 0x02, 0x92, 0xe1, 0xf6, 0xed, 0x42, 0xb4,
0x5a, 0xdd, 0x0b, 0x1e, 0x04, 0x99, 0x21, 0x26, 0xda, 0xca, 0x17, 0x33, 0x6e, 0xba, 0xda, 0xdc,
0x2e, 0x4c, 0xaf, 0x55, 0xbf, 0x12, 0x4d, 0x38, 0x6f, 0x10, 0x88, 0xee, 0xe7, 0x8b, 0x9b, 0x30,
0xc1, 0x6c, 0xb6, 0x2e, 0xc2, 0xa2, 0x8d, 0x78, 0xc9, 0xbb, 0x67, 0xce, 0x30, 0x2d, 0x9d, 0x77,
0x4a, 0xde, 0xf8, 0x29, 0x61, 0xf3, 0xfe, 0x05, 0x38, 0xb4, 0x01, 0x41, 0x7a, 0x4c, 0xaf, 0xd2,
0x70, 0x7b, 0x6a, 0xd4, 0xcc, 0x96, 0x83, 0x9f, 0xc3, 0x72, 0xea, 0xdd, 0x95, 0x9b, 0x35, 0xf9,
0x6f, 0xb3, 0xe6, 0xa4, 0xbe, 0x28, 0x52, 0x32, 0x05, 0x46, 0xd0, 0x98, 0xe8, 0xcf, 0x01, 0x2c,
0xcd, 0x7b, 0x45, 0x48, 0xf5, 0x41, 0x08, 0x2f, 0x97, 0xa9, 0x86, 0x8e, 0xbe, 0x93, 0x2f, 0x23,
0x1f, 0x8c, 0x34, 0xdf, 0x2b, 0x48, 0xad, 0x95, 0x76, 0x00, 0x76, 0x31, 0x3d, 0xc0, 0x34, 0x64,
0x31, 0x72, 0x27, 0xd7, 0xe5, 0x11, 0x81, 0x52, 0x73, 0x77, 0x2a, 0x9d, 0x52, 0xd0, 0xfa, 0x6a,
0x0e, 0xca, 0x0a, 0xf5, 0x5f, 0x41, 0x0f, 0xba, 0x82, 0xa6, 0xf0, 0x39, 0x2c, 0xa7, 0xc6, 0xa0,
0xb9, 0x31, 0x93, 0x3f, 0x2a, 0x9d, 0x16, 0x90, 0x9f, 0xc9, 0xff, 0x58, 0xd0, 0xf1, 0x71, 0x77,
0x5c, 0x63, 0x49, 0x87, 0xc6, 0x14, 0xc1, 0xaf, 0x3b, 0x10, 0x1e, 0x3d, 0xf8, 0xf9, 0xfd, 0xbe,
0x4b, 0x4f, 0x47, 0xc7, 0x4c, 0xf5, 0xb6, 0xa0, 0x7c, 0xcf, 0x0d, 0xe4, 0xaf, 0x6d, 0x75, 0x03,
0xdb, 0x5c, 0xd2, 0x36, 0x3b, 0xc7, 0xf0, 0xf8, 0x78, 0x81, 0xaf, 0x1e, 0xfc, 0x2f, 0x00, 0x00,
0xff, 0xff, 0x76, 0x42, 0xbf, 0x37, 0x83, 0x22, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -224,6 +224,7 @@ message SegmentLoadInfo {
int64 dbID = 4;
int64 flush_time = 5;
repeated data.FieldBinlog binlog_paths = 6;
int64 num_of_rows = 7;
}
message LoadSegmentsRequest {

View File

@ -1367,6 +1367,7 @@ type SegmentLoadInfo struct {
DbID int64 `protobuf:"varint,4,opt,name=dbID,proto3" json:"dbID,omitempty"`
FlushTime int64 `protobuf:"varint,5,opt,name=flush_time,json=flushTime,proto3" json:"flush_time,omitempty"`
BinlogPaths []*datapb.FieldBinlog `protobuf:"bytes,6,rep,name=binlog_paths,json=binlogPaths,proto3" json:"binlog_paths,omitempty"`
NumOfRows int64 `protobuf:"varint,7,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
@ -1439,6 +1440,13 @@ func (m *SegmentLoadInfo) GetBinlogPaths() []*datapb.FieldBinlog {
return nil
}
func (m *SegmentLoadInfo) GetNumOfRows() int64 {
if m != nil {
return m.NumOfRows
}
return 0
}
type LoadSegmentsRequest struct {
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
NodeID int64 `protobuf:"varint,2,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
@ -2021,130 +2029,131 @@ func init() {
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
// 1958 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0x4f, 0x73, 0x1b, 0x49,
0x15, 0xf7, 0x48, 0xb2, 0x2c, 0x3d, 0xeb, 0xcf, 0xa4, 0x13, 0x1b, 0x45, 0x24, 0xbb, 0x66, 0xb2,
0xd9, 0x64, 0xbd, 0xac, 0xbd, 0xab, 0x2c, 0x55, 0xe4, 0xc0, 0x61, 0x63, 0x6d, 0x8c, 0x60, 0xe3,
0x35, 0x63, 0xb3, 0x14, 0xa9, 0x54, 0x0d, 0xa3, 0x99, 0xb6, 0x34, 0xb5, 0x33, 0xd3, 0xca, 0xf4,
0x28, 0x8e, 0x73, 0xe0, 0xc4, 0x57, 0xe0, 0x04, 0x45, 0x15, 0x55, 0xfc, 0x29, 0x0e, 0x7c, 0x01,
0x4e, 0x7b, 0xe1, 0xce, 0x17, 0x80, 0x2a, 0x0a, 0x6e, 0x1c, 0xf8, 0x0a, 0x54, 0xf7, 0xf4, 0x8c,
0xe6, 0x4f, 0xcb, 0x56, 0x6c, 0x4c, 0x52, 0x29, 0x6e, 0xea, 0xd7, 0x6f, 0xde, 0xff, 0xfe, 0xf5,
0xeb, 0x27, 0xb8, 0xf2, 0x74, 0x8a, 0x83, 0x13, 0xc3, 0x22, 0x24, 0xb0, 0xb7, 0x26, 0x01, 0x09,
0x09, 0x42, 0x9e, 0xe3, 0x3e, 0x9b, 0xd2, 0x68, 0xb5, 0xc5, 0xf7, 0xbb, 0x0d, 0x8b, 0x78, 0x1e,
0xf1, 0x23, 0x5a, 0xb7, 0x91, 0xe6, 0xe8, 0xb6, 0x1c, 0x3f, 0xc4, 0x81, 0x6f, 0xba, 0xf1, 0x2e,
0xb5, 0xc6, 0xd8, 0x33, 0xc5, 0x4a, 0xb5, 0xcd, 0xd0, 0x4c, 0xcb, 0xd7, 0x7e, 0xa6, 0xc0, 0xfa,
0xc1, 0x98, 0x1c, 0xef, 0x10, 0xd7, 0xc5, 0x56, 0xe8, 0x10, 0x9f, 0xea, 0xf8, 0xe9, 0x14, 0xd3,
0x10, 0x7d, 0x08, 0x95, 0xa1, 0x49, 0x71, 0x47, 0xd9, 0x50, 0xee, 0xae, 0xf6, 0x6e, 0x6c, 0x65,
0x2c, 0x11, 0x26, 0x3c, 0xa2, 0xa3, 0x07, 0x26, 0xc5, 0x3a, 0xe7, 0x44, 0x08, 0x2a, 0xf6, 0x70,
0xd0, 0xef, 0x94, 0x36, 0x94, 0xbb, 0x65, 0x9d, 0xff, 0x46, 0xef, 0x40, 0xd3, 0x4a, 0x64, 0x0f,
0xfa, 0xb4, 0x53, 0xde, 0x28, 0xdf, 0x2d, 0xeb, 0x59, 0xa2, 0xf6, 0x7b, 0x05, 0xbe, 0x56, 0x30,
0x83, 0x4e, 0x88, 0x4f, 0x31, 0xba, 0x07, 0x55, 0x1a, 0x9a, 0xe1, 0x94, 0x0a, 0x4b, 0xbe, 0x2e,
0xb5, 0xe4, 0x80, 0xb3, 0xe8, 0x82, 0xb5, 0xa8, 0xb6, 0x24, 0x51, 0x8b, 0x3e, 0x82, 0x6b, 0x8e,
0xff, 0x08, 0x7b, 0x24, 0x38, 0x31, 0x26, 0x38, 0xb0, 0xb0, 0x1f, 0x9a, 0x23, 0x1c, 0xdb, 0x78,
0x35, 0xde, 0xdb, 0x9f, 0x6d, 0x69, 0xbf, 0x55, 0x60, 0x8d, 0x59, 0xba, 0x6f, 0x06, 0xa1, 0x73,
0x09, 0xf1, 0xd2, 0xa0, 0x91, 0xb6, 0xb1, 0x53, 0xe6, 0x7b, 0x19, 0x1a, 0xe3, 0x99, 0xc4, 0xea,
0x99, 0x6f, 0x15, 0x6e, 0x6e, 0x86, 0xa6, 0xfd, 0x46, 0x24, 0x36, 0x6d, 0xe7, 0x45, 0x02, 0x9a,
0xd7, 0x59, 0x2a, 0xea, 0x3c, 0x4f, 0x38, 0xbf, 0x52, 0x60, 0xed, 0x33, 0x62, 0xda, 0xb3, 0xc4,
0xff, 0xef, 0xc3, 0xf9, 0x1d, 0xa8, 0x46, 0xa7, 0xa4, 0x53, 0xe1, 0xba, 0x6e, 0x67, 0x75, 0x89,
0x13, 0x34, 0xb3, 0xf0, 0x80, 0x13, 0x74, 0xf1, 0x91, 0xf6, 0x4b, 0x05, 0x3a, 0x3a, 0x76, 0xb1,
0x49, 0xf1, 0xab, 0xf4, 0x62, 0x1d, 0xaa, 0x3e, 0xb1, 0xf1, 0xa0, 0xcf, 0xbd, 0x28, 0xeb, 0x62,
0xa5, 0xfd, 0x53, 0x44, 0xf8, 0x35, 0x2f, 0xd8, 0x54, 0x16, 0x96, 0xcf, 0x93, 0x85, 0xaf, 0x66,
0x59, 0x78, 0xdd, 0x3d, 0x9d, 0x65, 0x6a, 0x39, 0x93, 0xa9, 0x1f, 0xc3, 0xf5, 0x9d, 0x00, 0x9b,
0x21, 0xfe, 0x01, 0x83, 0xf9, 0x9d, 0xb1, 0xe9, 0xfb, 0xd8, 0x8d, 0x5d, 0xc8, 0x2b, 0x57, 0x24,
0xca, 0x3b, 0xb0, 0x32, 0x09, 0xc8, 0xf3, 0x93, 0xc4, 0xee, 0x78, 0xa9, 0xfd, 0x5a, 0x81, 0xae,
0x4c, 0xf6, 0x45, 0x10, 0xe1, 0x0e, 0xb4, 0x83, 0xc8, 0x38, 0xc3, 0x8a, 0xe4, 0x71, 0xad, 0x75,
0xbd, 0x25, 0xc8, 0x42, 0x0b, 0xba, 0x0d, 0xad, 0x00, 0xd3, 0xa9, 0x3b, 0xe3, 0x2b, 0x73, 0xbe,
0x66, 0x44, 0x15, 0x6c, 0xda, 0x1f, 0x14, 0xb8, 0xbe, 0x8b, 0xc3, 0x24, 0x7b, 0x4c, 0x1d, 0x7e,
0x4d, 0xd1, 0xf5, 0x57, 0x0a, 0xb4, 0x73, 0x86, 0xa2, 0x0d, 0x58, 0x4d, 0xf1, 0x88, 0x04, 0xa5,
0x49, 0xe8, 0xdb, 0xb0, 0xcc, 0x62, 0x87, 0xb9, 0x49, 0xad, 0x9e, 0xb6, 0x55, 0xbc, 0xdc, 0xb7,
0xb2, 0x52, 0xf5, 0xe8, 0x03, 0xb4, 0x0d, 0x57, 0x25, 0xc8, 0x2a, 0xcc, 0x47, 0x45, 0x60, 0xd5,
0xfe, 0xa8, 0x40, 0x57, 0x16, 0xcc, 0x8b, 0x24, 0xfc, 0x31, 0xac, 0x27, 0xde, 0x18, 0x36, 0xa6,
0x56, 0xe0, 0x4c, 0xf8, 0x31, 0xe3, 0x97, 0xc1, 0x6a, 0xef, 0xd6, 0xd9, 0xfe, 0x50, 0x7d, 0x2d,
0x11, 0xd1, 0x4f, 0x49, 0xd0, 0x1c, 0x58, 0xdb, 0xc5, 0xe1, 0x01, 0x1e, 0x79, 0xd8, 0x0f, 0x07,
0xfe, 0x11, 0x39, 0x7f, 0xde, 0xdf, 0x02, 0xa0, 0x42, 0x4e, 0x72, 0x4f, 0xa5, 0x28, 0xda, 0x5f,
0x4b, 0xb0, 0x9a, 0x52, 0x84, 0x6e, 0x40, 0x3d, 0xd9, 0x15, 0x59, 0x9b, 0x11, 0x0a, 0x15, 0x53,
0x92, 0x54, 0x4c, 0x2e, 0xf3, 0xe5, 0x62, 0xe6, 0xe7, 0x80, 0x33, 0xba, 0x0e, 0x35, 0x0f, 0x7b,
0x06, 0x75, 0x5e, 0x60, 0x01, 0x06, 0x2b, 0x1e, 0xf6, 0x0e, 0x9c, 0x17, 0x98, 0x6d, 0xf9, 0x53,
0xcf, 0x08, 0xc8, 0x31, 0xed, 0x54, 0xa3, 0x2d, 0x7f, 0xea, 0xe9, 0xe4, 0x98, 0xa2, 0x9b, 0x00,
0x8e, 0x6f, 0xe3, 0xe7, 0x86, 0x6f, 0x7a, 0xb8, 0xb3, 0xc2, 0x0f, 0x53, 0x9d, 0x53, 0xf6, 0x4c,
0x0f, 0x33, 0x18, 0xe0, 0x8b, 0x41, 0xbf, 0x53, 0x8b, 0x3e, 0x14, 0x4b, 0xe6, 0xaa, 0x38, 0x82,
0x83, 0x7e, 0xa7, 0x1e, 0x7d, 0x97, 0x10, 0xd0, 0xa7, 0xd0, 0x14, 0x7e, 0x1b, 0x51, 0x99, 0x02,
0x2f, 0xd3, 0x0d, 0x59, 0x5a, 0x45, 0x00, 0xa3, 0x22, 0x6d, 0xd0, 0xd4, 0x8a, 0xb7, 0x94, 0xf9,
0x5c, 0x5e, 0xa4, 0xec, 0xbe, 0x05, 0xcb, 0x8e, 0x7f, 0x44, 0xe2, 0x2a, 0x7b, 0xfb, 0x14, 0x73,
0xb8, 0xb2, 0x88, 0x5b, 0xfb, 0x9b, 0x02, 0xeb, 0x9f, 0xd8, 0xb6, 0x0c, 0x4b, 0x5f, 0xbe, 0xa6,
0x66, 0xf9, 0x2b, 0x65, 0xf2, 0xb7, 0x08, 0x9e, 0xbc, 0x0f, 0x57, 0x72, 0x38, 0x29, 0xca, 0xa0,
0xae, 0xab, 0x59, 0xa4, 0x1c, 0xf4, 0xd1, 0x7b, 0xa0, 0x66, 0xb1, 0x52, 0xdc, 0x12, 0x75, 0xbd,
0x9d, 0x41, 0xcb, 0x41, 0x5f, 0xfb, 0xbb, 0x02, 0xd7, 0x75, 0xec, 0x91, 0x67, 0xf8, 0xcd, 0xf5,
0xf1, 0x1f, 0x25, 0x58, 0xff, 0x91, 0x19, 0x5a, 0xe3, 0xbe, 0x27, 0x88, 0xf4, 0xd5, 0x38, 0x98,
0x3b, 0xe2, 0x95, 0xe2, 0x11, 0x4f, 0xca, 0x74, 0x59, 0x56, 0xa6, 0xec, 0xe1, 0xb5, 0xf5, 0x45,
0xec, 0xef, 0xac, 0x4c, 0x53, 0x6d, 0x4f, 0xf5, 0x1c, 0x6d, 0x0f, 0xda, 0x81, 0x26, 0x7e, 0x6e,
0xb9, 0x53, 0x1b, 0x1b, 0x91, 0xf6, 0x15, 0xae, 0xfd, 0x2d, 0x89, 0xf6, 0xf4, 0x19, 0x69, 0x88,
0x8f, 0x06, 0xfc, 0xa8, 0xfc, 0x4b, 0x81, 0xb6, 0xd8, 0x65, 0x9d, 0xe2, 0x02, 0xa8, 0x98, 0x0b,
0x47, 0xa9, 0x18, 0x8e, 0x45, 0x82, 0x1a, 0xdf, 0xd0, 0x95, 0xd4, 0x0d, 0x7d, 0x13, 0xe0, 0xc8,
0x9d, 0xd2, 0xb1, 0x11, 0x3a, 0x5e, 0x8c, 0x89, 0x75, 0x4e, 0x39, 0x74, 0x3c, 0x8c, 0x3e, 0x81,
0xc6, 0xd0, 0xf1, 0x5d, 0x32, 0x32, 0x26, 0x66, 0x38, 0x66, 0xc8, 0x38, 0xcf, 0xdd, 0x87, 0x0e,
0x76, 0xed, 0x07, 0x9c, 0x57, 0x5f, 0x8d, 0xbe, 0xd9, 0x67, 0x9f, 0x68, 0xbf, 0x2b, 0xc1, 0x55,
0xe6, 0xa6, 0xf0, 0xf8, 0x12, 0x0a, 0xea, 0x7e, 0x5c, 0x0a, 0xe5, 0xf9, 0xf7, 0x62, 0x2e, 0xde,
0xc5, 0x72, 0x38, 0xcf, 0x5b, 0x04, 0x7d, 0x1f, 0x5a, 0x2e, 0x31, 0x6d, 0xc3, 0x22, 0xbe, 0xcd,
0x33, 0xc1, 0x23, 0xd8, 0xea, 0xbd, 0x23, 0x33, 0xe1, 0x30, 0x70, 0x46, 0x23, 0x1c, 0xec, 0xc4,
0xbc, 0x7a, 0xd3, 0xe5, 0x2f, 0x31, 0xb1, 0xe4, 0x08, 0x2a, 0x5a, 0xea, 0xcb, 0x8b, 0x55, 0x5c,
0x03, 0xe5, 0x53, 0xba, 0xb4, 0xca, 0x02, 0x5d, 0xda, 0xb2, 0xa4, 0xd1, 0xce, 0x76, 0x02, 0xd5,
0x42, 0x27, 0x70, 0x08, 0xcd, 0x04, 0x57, 0x78, 0xd1, 0xdf, 0x82, 0x66, 0x64, 0x96, 0xc1, 0x22,
0x81, 0xed, 0xb8, 0xcb, 0x8e, 0x88, 0x9f, 0x71, 0x1a, 0x93, 0x9a, 0xe0, 0x56, 0x74, 0x29, 0xd5,
0xf5, 0x14, 0x45, 0xfb, 0xb9, 0x02, 0x6a, 0x1a, 0x91, 0xb9, 0xe4, 0x45, 0xda, 0xf7, 0x3b, 0xd0,
0x16, 0x03, 0xa0, 0x04, 0x16, 0x45, 0x43, 0xfd, 0x34, 0x2d, 0xae, 0x8f, 0x3e, 0x86, 0xf5, 0x88,
0xb1, 0x00, 0xa3, 0x51, 0x63, 0x7d, 0x8d, 0xef, 0xea, 0x39, 0x2c, 0xfd, 0x4b, 0x19, 0x5a, 0xb3,
0xc2, 0x59, 0xd8, 0xaa, 0x45, 0x1e, 0xfe, 0x7b, 0xa0, 0xce, 0x3a, 0x43, 0xde, 0x3b, 0x9c, 0x5a,
0xfb, 0xf9, 0x9e, 0xb0, 0x3d, 0xc9, 0xb5, 0xd2, 0x0f, 0xa1, 0x29, 0x7c, 0x12, 0xa8, 0x56, 0xe1,
0xc2, 0xbe, 0x21, 0x13, 0x96, 0xc9, 0xa0, 0xde, 0x48, 0x41, 0x2c, 0x45, 0xf7, 0xa1, 0xce, 0x8f,
0x43, 0x78, 0x32, 0xc1, 0xe2, 0x24, 0xdc, 0x90, 0xc9, 0x60, 0x99, 0x3d, 0x3c, 0x99, 0x60, 0xbd,
0xe6, 0x8a, 0x5f, 0x17, 0xc5, 0xe5, 0x7b, 0xb0, 0x16, 0x44, 0x47, 0xc7, 0x36, 0x32, 0xe1, 0x5b,
0xe1, 0xe1, 0xbb, 0x16, 0x6f, 0xee, 0xa7, 0xc3, 0x38, 0xa7, 0xcb, 0xaf, 0xcd, 0xed, 0xf2, 0x7f,
0x0a, 0xed, 0xef, 0x9a, 0xbe, 0x4d, 0x8e, 0x8e, 0xe2, 0x03, 0x7a, 0x8e, 0x93, 0x79, 0x3f, 0xdb,
0x5f, 0xbd, 0x04, 0x5a, 0x69, 0xbf, 0x28, 0xc1, 0x3a, 0xa3, 0x3d, 0x30, 0x5d, 0xd3, 0xb7, 0xf0,
0xe2, 0x5d, 0xf5, 0x7f, 0xe7, 0xfe, 0xb8, 0x05, 0x4d, 0x4a, 0xa6, 0x81, 0x85, 0x8d, 0x4c, 0x73,
0xdd, 0x88, 0x88, 0x7b, 0x11, 0xc0, 0xdc, 0x04, 0xb0, 0x69, 0x68, 0x64, 0x5e, 0xdc, 0x75, 0x9b,
0x86, 0x62, 0xfb, 0x6d, 0x58, 0x15, 0x32, 0x6c, 0xe2, 0x63, 0x9e, 0xec, 0x9a, 0x0e, 0x11, 0xa9,
0x4f, 0x7c, 0xde, 0x87, 0xb3, 0xef, 0xf9, 0xee, 0x0a, 0xdf, 0x5d, 0xb1, 0x69, 0xc8, 0xb7, 0x6e,
0x02, 0x3c, 0x33, 0x5d, 0xc7, 0xe6, 0x45, 0xca, 0xd3, 0x54, 0xd3, 0xeb, 0x9c, 0xc2, 0x42, 0xa0,
0xfd, 0x49, 0x01, 0x94, 0x8a, 0xce, 0xf9, 0xb1, 0xf3, 0x36, 0xb4, 0x32, 0x7e, 0x26, 0xd3, 0xcc,
0xb4, 0xa3, 0x94, 0x81, 0xff, 0x30, 0x52, 0x65, 0x04, 0xd8, 0xa4, 0xc4, 0xe7, 0x41, 0x5b, 0x18,
0xfc, 0x87, 0xb1, 0x99, 0xec, 0xd3, 0xcd, 0x17, 0xd0, 0xca, 0x1e, 0x53, 0xd4, 0x80, 0xda, 0x1e,
0x09, 0x3f, 0x7d, 0xee, 0xd0, 0x50, 0x5d, 0x42, 0x2d, 0x80, 0x3d, 0x12, 0xee, 0x07, 0x98, 0x62,
0x3f, 0x54, 0x15, 0x04, 0x50, 0xfd, 0xdc, 0xef, 0x3b, 0xf4, 0x4b, 0xb5, 0x84, 0xae, 0x8a, 0xc7,
0xb1, 0xe9, 0x0e, 0x44, 0xcd, 0xaa, 0x65, 0xf6, 0x79, 0xb2, 0xaa, 0x20, 0x15, 0x1a, 0x09, 0xcb,
0xee, 0xfe, 0x0f, 0xd5, 0x65, 0x54, 0x87, 0xe5, 0xe8, 0x67, 0x75, 0xf3, 0x73, 0x50, 0xf3, 0xe6,
0xa1, 0x55, 0x58, 0x19, 0x47, 0xa5, 0xae, 0x2e, 0xa1, 0x36, 0xac, 0xba, 0xb3, 0xc0, 0xaa, 0x0a,
0x23, 0x8c, 0x82, 0x89, 0x25, 0x42, 0xac, 0x96, 0x98, 0x36, 0x16, 0xab, 0x3e, 0x39, 0xf6, 0xd5,
0xf2, 0xe6, 0xf7, 0xa0, 0x91, 0x7e, 0xb0, 0xa0, 0x1a, 0x54, 0xf6, 0x88, 0x8f, 0xd5, 0x25, 0x26,
0x76, 0x37, 0x20, 0xc7, 0x8e, 0x3f, 0x8a, 0x7c, 0x78, 0x18, 0x90, 0x17, 0xd8, 0x57, 0x4b, 0x6c,
0x83, 0x62, 0xd3, 0x65, 0x1b, 0x65, 0xb6, 0xc1, 0x16, 0xd8, 0x56, 0x2b, 0x9b, 0x1f, 0x41, 0x2d,
0x86, 0x0b, 0x74, 0x05, 0x9a, 0x99, 0xd1, 0x9a, 0xba, 0x84, 0x50, 0x74, 0x03, 0xcf, 0x80, 0x41,
0x55, 0x7a, 0xff, 0x06, 0x80, 0xe8, 0x46, 0x20, 0x24, 0xb0, 0xd1, 0x04, 0xd0, 0x2e, 0x0e, 0x77,
0x88, 0x37, 0x21, 0x7e, 0x6c, 0x12, 0x45, 0x1f, 0x66, 0xb3, 0x94, 0xcc, 0xf1, 0x8b, 0xac, 0xc2,
0xcb, 0xee, 0xbb, 0x73, 0xbe, 0xc8, 0xb1, 0x6b, 0x4b, 0xc8, 0xe3, 0x1a, 0x59, 0x03, 0x75, 0xe8,
0x58, 0x5f, 0xc6, 0x73, 0x99, 0x53, 0x34, 0xe6, 0x58, 0x63, 0x8d, 0x39, 0x6c, 0x10, 0x8b, 0x83,
0x30, 0x70, 0xfc, 0x51, 0xfc, 0xc8, 0xd3, 0x96, 0xd0, 0x53, 0xb8, 0xc6, 0x1e, 0x80, 0xa1, 0x19,
0x3a, 0x34, 0x74, 0x2c, 0x1a, 0x2b, 0xec, 0xcd, 0x57, 0x58, 0x60, 0x7e, 0x49, 0x95, 0x2e, 0xb4,
0x73, 0xff, 0x1f, 0xa0, 0x4d, 0x29, 0x90, 0x49, 0xff, 0xeb, 0xe8, 0xbe, 0xbf, 0x10, 0x6f, 0xa2,
0xcd, 0x81, 0x56, 0x76, 0xb6, 0x8e, 0xde, 0x9b, 0x27, 0xa0, 0x30, 0x8c, 0xec, 0x6e, 0x2e, 0xc2,
0x9a, 0xa8, 0x7a, 0x0c, 0xad, 0xec, 0xf4, 0x56, 0xae, 0x4a, 0x3a, 0xe1, 0xed, 0x9e, 0xf6, 0xbe,
0xd6, 0x96, 0xd0, 0x4f, 0xe0, 0x4a, 0x61, 0x64, 0x8a, 0xbe, 0x29, 0x13, 0x3f, 0x6f, 0xb2, 0x7a,
0x96, 0x06, 0x61, 0xfd, 0x2c, 0x8a, 0xf3, 0xad, 0x2f, 0xcc, 0xce, 0x17, 0xb7, 0x3e, 0x25, 0xfe,
0x34, 0xeb, 0x5f, 0x5a, 0xc3, 0x14, 0x50, 0x71, 0x68, 0x8a, 0x3e, 0x90, 0xa9, 0x98, 0x3b, 0xb8,
0xed, 0x6e, 0x2d, 0xca, 0x9e, 0xa4, 0x7c, 0xca, 0x4f, 0x6b, 0x7e, 0xbc, 0x28, 0x55, 0x3b, 0x77,
0x5e, 0x2a, 0x57, 0x3b, 0x7f, 0x22, 0x18, 0x15, 0x75, 0x76, 0x6c, 0x23, 0xcf, 0x95, 0x74, 0x4c,
0x27, 0x2f, 0x6a, 0xf9, 0x14, 0x48, 0x5b, 0x42, 0x06, 0xc0, 0x2e, 0x0e, 0x1f, 0xe1, 0x30, 0x70,
0x2c, 0x8a, 0xde, 0x95, 0x1e, 0xf1, 0x19, 0x43, 0xac, 0xe3, 0xce, 0x99, 0x7c, 0xb1, 0x82, 0xde,
0x9f, 0xeb, 0x50, 0xe7, 0xd1, 0x65, 0x77, 0xe3, 0xff, 0x01, 0xf7, 0x12, 0x00, 0xf7, 0x09, 0xb4,
0x73, 0xd3, 0x35, 0x39, 0xe0, 0xca, 0x47, 0x70, 0x67, 0x9d, 0xbc, 0x21, 0xa0, 0xe2, 0x68, 0x4b,
0x7e, 0x04, 0xe6, 0x8e, 0xc0, 0xce, 0xd2, 0xf1, 0x04, 0xda, 0xb9, 0xd1, 0x92, 0xdc, 0x03, 0xf9,
0xfc, 0xe9, 0x2c, 0xe9, 0x5f, 0x40, 0x23, 0x3d, 0x64, 0x40, 0x77, 0xe6, 0xe1, 0x5e, 0xee, 0x69,
0xfd, 0xea, 0x51, 0xef, 0xf2, 0x6f, 0x85, 0x27, 0xd0, 0xce, 0xcd, 0x15, 0xe4, 0x91, 0x97, 0x0f,
0x1f, 0xce, 0x92, 0xfe, 0x06, 0xe1, 0xd8, 0x83, 0x8f, 0x1f, 0xf7, 0x46, 0x4e, 0x38, 0x9e, 0x0e,
0x99, 0x97, 0xdb, 0x11, 0xe7, 0x07, 0x0e, 0x11, 0xbf, 0xb6, 0xe3, 0x03, 0xbd, 0xcd, 0x25, 0x6d,
0x73, 0x6b, 0x27, 0xc3, 0x61, 0x95, 0x2f, 0xef, 0xfd, 0x27, 0x00, 0x00, 0xff, 0xff, 0x92, 0x29,
0x0a, 0x06, 0x50, 0x22, 0x00, 0x00,
// 1978 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x73, 0xdc, 0x48,
0x15, 0xb7, 0x66, 0xc6, 0xf3, 0xf1, 0xe6, 0x4b, 0xe9, 0xc4, 0x66, 0x32, 0x6c, 0xb2, 0x46, 0xd9,
0x6c, 0xb2, 0x5e, 0xd6, 0xde, 0x75, 0x96, 0x2a, 0x72, 0xe0, 0xb0, 0xf1, 0x6c, 0xcc, 0xc0, 0xc6,
0x31, 0xb2, 0x59, 0x8a, 0x54, 0xaa, 0x84, 0x46, 0x6a, 0x8f, 0x55, 0x2b, 0xa9, 0x27, 0x6a, 0x4d,
0x1c, 0xe7, 0xc0, 0x89, 0x1b, 0x67, 0x4e, 0x50, 0x54, 0x51, 0xc5, 0x47, 0x71, 0xe0, 0x1f, 0xe0,
0xb4, 0x17, 0xee, 0xfc, 0x03, 0x50, 0x45, 0xc1, 0x9d, 0x7f, 0x81, 0xea, 0x56, 0x4b, 0xa3, 0x8f,
0x1e, 0x7b, 0x62, 0x63, 0x92, 0xda, 0xe2, 0x36, 0xfd, 0xfa, 0xe9, 0xbd, 0xd7, 0xef, 0xe3, 0xd7,
0xaf, 0xdf, 0xc0, 0x95, 0x67, 0x53, 0x1c, 0x9c, 0x18, 0x16, 0x21, 0x81, 0xbd, 0x31, 0x09, 0x48,
0x48, 0x10, 0xf2, 0x1c, 0xf7, 0xf9, 0x94, 0x46, 0xab, 0x0d, 0xbe, 0xdf, 0x6f, 0x59, 0xc4, 0xf3,
0x88, 0x1f, 0xd1, 0xfa, 0xad, 0x34, 0x47, 0xbf, 0xe3, 0xf8, 0x21, 0x0e, 0x7c, 0xd3, 0x8d, 0x77,
0xa9, 0x75, 0x84, 0x3d, 0x53, 0xac, 0x54, 0xdb, 0x0c, 0xcd, 0xb4, 0x7c, 0xed, 0x67, 0x0a, 0xac,
0xee, 0x1f, 0x91, 0xe3, 0x6d, 0xe2, 0xba, 0xd8, 0x0a, 0x1d, 0xe2, 0x53, 0x1d, 0x3f, 0x9b, 0x62,
0x1a, 0xa2, 0x0f, 0xa1, 0x32, 0x32, 0x29, 0xee, 0x29, 0x6b, 0xca, 0xdd, 0xe6, 0xd6, 0x5b, 0x1b,
0x19, 0x4b, 0x84, 0x09, 0x8f, 0xe8, 0xf8, 0x81, 0x49, 0xb1, 0xce, 0x39, 0x11, 0x82, 0x8a, 0x3d,
0x1a, 0x0e, 0x7a, 0xa5, 0x35, 0xe5, 0x6e, 0x59, 0xe7, 0xbf, 0xd1, 0x3b, 0xd0, 0xb6, 0x12, 0xd9,
0xc3, 0x01, 0xed, 0x95, 0xd7, 0xca, 0x77, 0xcb, 0x7a, 0x96, 0xa8, 0xfd, 0x41, 0x81, 0xaf, 0x15,
0xcc, 0xa0, 0x13, 0xe2, 0x53, 0x8c, 0xee, 0x41, 0x95, 0x86, 0x66, 0x38, 0xa5, 0xc2, 0x92, 0xaf,
0x4b, 0x2d, 0xd9, 0xe7, 0x2c, 0xba, 0x60, 0x2d, 0xaa, 0x2d, 0x49, 0xd4, 0xa2, 0x8f, 0xe0, 0x9a,
0xe3, 0x3f, 0xc2, 0x1e, 0x09, 0x4e, 0x8c, 0x09, 0x0e, 0x2c, 0xec, 0x87, 0xe6, 0x18, 0xc7, 0x36,
0x5e, 0x8d, 0xf7, 0xf6, 0x66, 0x5b, 0xda, 0xef, 0x14, 0x58, 0x61, 0x96, 0xee, 0x99, 0x41, 0xe8,
0x5c, 0x82, 0xbf, 0x34, 0x68, 0xa5, 0x6d, 0xec, 0x95, 0xf9, 0x5e, 0x86, 0xc6, 0x78, 0x26, 0xb1,
0x7a, 0x76, 0xb6, 0x0a, 0x37, 0x37, 0x43, 0xd3, 0x7e, 0x2b, 0x02, 0x9b, 0xb6, 0xf3, 0x22, 0x0e,
0xcd, 0xeb, 0x2c, 0x15, 0x75, 0x9e, 0xc7, 0x9d, 0x5f, 0x2a, 0xb0, 0xf2, 0x19, 0x31, 0xed, 0x59,
0xe0, 0xff, 0xf7, 0xee, 0xfc, 0x0e, 0x54, 0xa3, 0x2a, 0xe9, 0x55, 0xb8, 0xae, 0xdb, 0x59, 0x5d,
0xa2, 0x82, 0x66, 0x16, 0xee, 0x73, 0x82, 0x2e, 0x3e, 0xd2, 0x7e, 0xa5, 0x40, 0x4f, 0xc7, 0x2e,
0x36, 0x29, 0x7e, 0x9d, 0xa7, 0x58, 0x85, 0xaa, 0x4f, 0x6c, 0x3c, 0x1c, 0xf0, 0x53, 0x94, 0x75,
0xb1, 0xd2, 0xfe, 0x25, 0x3c, 0xfc, 0x86, 0x27, 0x6c, 0x2a, 0x0a, 0xcb, 0xe7, 0x89, 0xc2, 0x97,
0xb3, 0x28, 0xbc, 0xe9, 0x27, 0x9d, 0x45, 0x6a, 0x39, 0x13, 0xa9, 0x1f, 0xc3, 0xf5, 0xed, 0x00,
0x9b, 0x21, 0xfe, 0x01, 0x83, 0xf9, 0xed, 0x23, 0xd3, 0xf7, 0xb1, 0x1b, 0x1f, 0x21, 0xaf, 0x5c,
0x91, 0x28, 0xef, 0x41, 0x6d, 0x12, 0x90, 0x17, 0x27, 0x89, 0xdd, 0xf1, 0x52, 0xfb, 0x8d, 0x02,
0x7d, 0x99, 0xec, 0x8b, 0x20, 0xc2, 0x1d, 0xe8, 0x06, 0x91, 0x71, 0x86, 0x15, 0xc9, 0xe3, 0x5a,
0x1b, 0x7a, 0x47, 0x90, 0x85, 0x16, 0x74, 0x1b, 0x3a, 0x01, 0xa6, 0x53, 0x77, 0xc6, 0x57, 0xe6,
0x7c, 0xed, 0x88, 0x2a, 0xd8, 0xb4, 0x3f, 0x2a, 0x70, 0x7d, 0x07, 0x87, 0x49, 0xf4, 0x98, 0x3a,
0xfc, 0x86, 0xa2, 0xeb, 0xaf, 0x15, 0xe8, 0xe6, 0x0c, 0x45, 0x6b, 0xd0, 0x4c, 0xf1, 0x88, 0x00,
0xa5, 0x49, 0xe8, 0xdb, 0xb0, 0xcc, 0x7c, 0x87, 0xb9, 0x49, 0x9d, 0x2d, 0x6d, 0xa3, 0x78, 0xb9,
0x6f, 0x64, 0xa5, 0xea, 0xd1, 0x07, 0x68, 0x13, 0xae, 0x4a, 0x90, 0x55, 0x98, 0x8f, 0x8a, 0xc0,
0xaa, 0xfd, 0x49, 0x81, 0xbe, 0xcc, 0x99, 0x17, 0x09, 0xf8, 0x13, 0x58, 0x4d, 0x4e, 0x63, 0xd8,
0x98, 0x5a, 0x81, 0x33, 0xe1, 0x65, 0xc6, 0x2f, 0x83, 0xe6, 0xd6, 0xad, 0xb3, 0xcf, 0x43, 0xf5,
0x95, 0x44, 0xc4, 0x20, 0x25, 0x41, 0x73, 0x60, 0x65, 0x07, 0x87, 0xfb, 0x78, 0xec, 0x61, 0x3f,
0x1c, 0xfa, 0x87, 0xe4, 0xfc, 0x71, 0xbf, 0x09, 0x40, 0x85, 0x9c, 0xe4, 0x9e, 0x4a, 0x51, 0xb4,
0xbf, 0x95, 0xa0, 0x99, 0x52, 0x84, 0xde, 0x82, 0x46, 0xb2, 0x2b, 0xa2, 0x36, 0x23, 0x14, 0x32,
0xa6, 0x24, 0xc9, 0x98, 0x5c, 0xe4, 0xcb, 0xc5, 0xc8, 0xcf, 0x01, 0x67, 0x74, 0x1d, 0xea, 0x1e,
0xf6, 0x0c, 0xea, 0xbc, 0xc4, 0x02, 0x0c, 0x6a, 0x1e, 0xf6, 0xf6, 0x9d, 0x97, 0x98, 0x6d, 0xf9,
0x53, 0xcf, 0x08, 0xc8, 0x31, 0xed, 0x55, 0xa3, 0x2d, 0x7f, 0xea, 0xe9, 0xe4, 0x98, 0xa2, 0x1b,
0x00, 0x8e, 0x6f, 0xe3, 0x17, 0x86, 0x6f, 0x7a, 0xb8, 0x57, 0xe3, 0xc5, 0xd4, 0xe0, 0x94, 0x5d,
0xd3, 0xc3, 0x0c, 0x06, 0xf8, 0x62, 0x38, 0xe8, 0xd5, 0xa3, 0x0f, 0xc5, 0x92, 0x1d, 0x55, 0x94,
0xe0, 0x70, 0xd0, 0x6b, 0x44, 0xdf, 0x25, 0x04, 0xf4, 0x29, 0xb4, 0xc5, 0xb9, 0x8d, 0x28, 0x4d,
0x81, 0xa7, 0xe9, 0x9a, 0x2c, 0xac, 0xc2, 0x81, 0x51, 0x92, 0xb6, 0x68, 0x6a, 0xc5, 0x5b, 0xca,
0x7c, 0x2c, 0x2f, 0x92, 0x76, 0xdf, 0x82, 0x65, 0xc7, 0x3f, 0x24, 0x71, 0x96, 0xbd, 0x7d, 0x8a,
0x39, 0x5c, 0x59, 0xc4, 0xad, 0xfd, 0x5d, 0x81, 0xd5, 0x4f, 0x6c, 0x5b, 0x86, 0xa5, 0xaf, 0x9e,
0x53, 0xb3, 0xf8, 0x95, 0x32, 0xf1, 0x5b, 0x04, 0x4f, 0xde, 0x87, 0x2b, 0x39, 0x9c, 0x14, 0x69,
0xd0, 0xd0, 0xd5, 0x2c, 0x52, 0x0e, 0x07, 0xe8, 0x3d, 0x50, 0xb3, 0x58, 0x29, 0x6e, 0x89, 0x86,
0xde, 0xcd, 0xa0, 0xe5, 0x70, 0xa0, 0xfd, 0x43, 0x81, 0xeb, 0x3a, 0xf6, 0xc8, 0x73, 0xfc, 0xd5,
0x3d, 0xe3, 0x3f, 0x4b, 0xb0, 0xfa, 0x23, 0x33, 0xb4, 0x8e, 0x06, 0x9e, 0x20, 0xd2, 0xd7, 0x73,
0xc0, 0x5c, 0x89, 0x57, 0x8a, 0x25, 0x9e, 0xa4, 0xe9, 0xb2, 0x2c, 0x4d, 0xd9, 0xc3, 0x6b, 0xe3,
0xf3, 0xf8, 0xbc, 0xb3, 0x34, 0x4d, 0xb5, 0x3d, 0xd5, 0x73, 0xb4, 0x3d, 0x68, 0x1b, 0xda, 0xf8,
0x85, 0xe5, 0x4e, 0x6d, 0x6c, 0x44, 0xda, 0x6b, 0x5c, 0xfb, 0x4d, 0x89, 0xf6, 0x74, 0x8d, 0xb4,
0xc4, 0x47, 0x43, 0x5e, 0x2a, 0x3f, 0x2f, 0x41, 0x57, 0xec, 0xb2, 0x4e, 0x71, 0x01, 0x54, 0xcc,
0xb9, 0xa3, 0x54, 0x74, 0xc7, 0x22, 0x4e, 0x8d, 0x6f, 0xe8, 0x4a, 0xea, 0x86, 0xbe, 0x01, 0x70,
0xe8, 0x4e, 0xe9, 0x91, 0x11, 0x3a, 0x5e, 0x8c, 0x89, 0x0d, 0x4e, 0x39, 0x70, 0x3c, 0x8c, 0x3e,
0x81, 0xd6, 0xc8, 0xf1, 0x5d, 0x32, 0x36, 0x26, 0x66, 0x78, 0xc4, 0x90, 0x71, 0xde, 0x71, 0x1f,
0x3a, 0xd8, 0xb5, 0x1f, 0x70, 0x5e, 0xbd, 0x19, 0x7d, 0xb3, 0xc7, 0x3e, 0x41, 0x37, 0xa1, 0xc9,
0x80, 0x95, 0x1c, 0x46, 0xd8, 0x5a, 0x8b, 0x54, 0xf8, 0x53, 0xef, 0xf1, 0x21, 0x43, 0x57, 0xed,
0xf7, 0x25, 0xb8, 0xca, 0xdc, 0x20, 0x3c, 0x72, 0x09, 0x09, 0x77, 0x3f, 0x4e, 0x95, 0xf2, 0xfc,
0x7b, 0x33, 0x17, 0x8f, 0x62, 0xba, 0x9c, 0xe7, 0xad, 0x82, 0xbe, 0x0f, 0x1d, 0x97, 0x98, 0xb6,
0x61, 0x11, 0xdf, 0xe6, 0x91, 0xe2, 0x1e, 0xee, 0x6c, 0xbd, 0x23, 0x33, 0xe1, 0x20, 0x70, 0xc6,
0x63, 0x1c, 0x6c, 0xc7, 0xbc, 0x7a, 0xdb, 0xe5, 0x2f, 0x35, 0xb1, 0xe4, 0x08, 0x2b, 0x5a, 0xee,
0xcb, 0xf3, 0x55, 0x9c, 0x23, 0xe5, 0x53, 0xba, 0xb8, 0xca, 0x02, 0x5d, 0xdc, 0xb2, 0xa4, 0x11,
0xcf, 0x76, 0x0a, 0xd5, 0x42, 0xa7, 0x70, 0x00, 0xed, 0x04, 0x77, 0x78, 0x51, 0xdc, 0x82, 0x76,
0x64, 0x96, 0xc1, 0x3c, 0x81, 0xed, 0xb8, 0x0b, 0x8f, 0x88, 0x9f, 0x71, 0x1a, 0x93, 0x9a, 0xe0,
0x5a, 0x74, 0x69, 0x35, 0xf4, 0x14, 0x45, 0xfb, 0x85, 0x02, 0x6a, 0x1a, 0xb1, 0xb9, 0xe4, 0x45,
0xda, 0xfb, 0x3b, 0xd0, 0x15, 0x03, 0xa2, 0x04, 0x36, 0x45, 0xc3, 0xfd, 0x2c, 0x2d, 0x6e, 0x80,
0x3e, 0x86, 0xd5, 0x88, 0xb1, 0x00, 0xb3, 0x51, 0xe3, 0x7d, 0x8d, 0xef, 0xea, 0x39, 0xac, 0xfd,
0x6b, 0x19, 0x3a, 0xb3, 0xc4, 0x59, 0xd8, 0xaa, 0x45, 0x06, 0x03, 0xbb, 0xa0, 0xce, 0x3a, 0x47,
0xde, 0x5b, 0x9c, 0x9a, 0xfb, 0xf9, 0x9e, 0xb1, 0x3b, 0xc9, 0xb5, 0xda, 0x0f, 0xa1, 0x2d, 0xce,
0x24, 0x50, 0xaf, 0xc2, 0x85, 0x7d, 0x43, 0x26, 0x2c, 0x13, 0x41, 0xbd, 0x95, 0x82, 0x60, 0x8a,
0xee, 0x43, 0x83, 0x97, 0x43, 0x78, 0x32, 0xc1, 0xa2, 0x12, 0xde, 0x92, 0xc9, 0x60, 0x91, 0x3d,
0x38, 0x99, 0x60, 0xbd, 0xee, 0x8a, 0x5f, 0x17, 0xc5, 0xed, 0x7b, 0xb0, 0x12, 0x44, 0xa5, 0x63,
0x1b, 0x19, 0xf7, 0xd5, 0xb8, 0xfb, 0xae, 0xc5, 0x9b, 0x7b, 0x69, 0x37, 0xce, 0x79, 0x05, 0xd4,
0xe7, 0xbe, 0x02, 0x7e, 0x0a, 0xdd, 0xef, 0x9a, 0xbe, 0x4d, 0x0e, 0x0f, 0xe3, 0x02, 0x3d, 0x47,
0x65, 0xde, 0xcf, 0xf6, 0x5f, 0xaf, 0x80, 0x56, 0xda, 0x2f, 0x4b, 0xb0, 0xca, 0x68, 0x0f, 0x4c,
0xd7, 0xf4, 0x2d, 0xbc, 0x78, 0xd7, 0xfd, 0xdf, 0xb9, 0x5f, 0x6e, 0x41, 0x9b, 0x92, 0x69, 0x60,
0x61, 0x23, 0xd3, 0x7c, 0xb7, 0x22, 0xe2, 0x6e, 0x04, 0x30, 0x37, 0x00, 0x6c, 0x1a, 0x1a, 0x99,
0x17, 0x79, 0xc3, 0xa6, 0xa1, 0xd8, 0x7e, 0x1b, 0x9a, 0x42, 0x86, 0x4d, 0x7c, 0xcc, 0x83, 0x5d,
0xd7, 0x21, 0x22, 0x0d, 0x88, 0xcf, 0xfb, 0x74, 0xf6, 0x3d, 0xdf, 0xad, 0xf1, 0xdd, 0x9a, 0x4d,
0x43, 0xbe, 0x75, 0x03, 0xe0, 0xb9, 0xe9, 0x3a, 0x36, 0x4f, 0x52, 0x1e, 0xa6, 0xba, 0xde, 0xe0,
0x14, 0xe6, 0x02, 0xed, 0xcf, 0x0a, 0xa0, 0x94, 0x77, 0xce, 0x8f, 0x9d, 0xb7, 0xa1, 0x93, 0x39,
0x67, 0x32, 0xed, 0x4c, 0x1f, 0x94, 0x32, 0xf0, 0x1f, 0x45, 0xaa, 0x8c, 0x00, 0x9b, 0x94, 0xf8,
0xdc, 0x69, 0x0b, 0x83, 0xff, 0x28, 0x36, 0x93, 0x7d, 0xba, 0xfe, 0x12, 0x3a, 0xd9, 0x32, 0x45,
0x2d, 0xa8, 0xef, 0x92, 0xf0, 0xd3, 0x17, 0x0e, 0x0d, 0xd5, 0x25, 0xd4, 0x01, 0xd8, 0x25, 0xe1,
0x5e, 0x80, 0x29, 0xf6, 0x43, 0x55, 0x41, 0x00, 0xd5, 0xc7, 0xfe, 0xc0, 0xa1, 0x5f, 0xa8, 0x25,
0x74, 0x55, 0x3c, 0x9e, 0x4d, 0x77, 0x28, 0x72, 0x56, 0x2d, 0xb3, 0xcf, 0x93, 0x55, 0x05, 0xa9,
0xd0, 0x4a, 0x58, 0x76, 0xf6, 0x7e, 0xa8, 0x2e, 0xa3, 0x06, 0x2c, 0x47, 0x3f, 0xab, 0xeb, 0x8f,
0x41, 0xcd, 0x9b, 0x87, 0x9a, 0x50, 0x3b, 0x8a, 0x52, 0x5d, 0x5d, 0x42, 0x5d, 0x68, 0xba, 0x33,
0xc7, 0xaa, 0x0a, 0x23, 0x8c, 0x83, 0x89, 0x25, 0x5c, 0xac, 0x96, 0x98, 0x36, 0xe6, 0xab, 0x01,
0x39, 0xf6, 0xd5, 0xf2, 0xfa, 0xf7, 0xa0, 0x95, 0x7e, 0xd0, 0xa0, 0x3a, 0x54, 0x76, 0x89, 0x8f,
0xd5, 0x25, 0x26, 0x76, 0x27, 0x20, 0xc7, 0x8e, 0x3f, 0x8e, 0xce, 0xf0, 0x30, 0x20, 0x2f, 0xb1,
0xaf, 0x96, 0xd8, 0x06, 0xc5, 0xa6, 0xcb, 0x36, 0xca, 0x6c, 0x83, 0x2d, 0xb0, 0xad, 0x56, 0xd6,
0x3f, 0x82, 0x7a, 0x0c, 0x17, 0xe8, 0x0a, 0xb4, 0x33, 0xa3, 0x37, 0x75, 0x09, 0xa1, 0xe8, 0x06,
0x9e, 0x01, 0x83, 0xaa, 0x6c, 0xfd, 0x1b, 0x00, 0xa2, 0x1b, 0x81, 0x90, 0xc0, 0x46, 0x13, 0x40,
0x3b, 0x38, 0xdc, 0x26, 0xde, 0x84, 0xf8, 0xb1, 0x49, 0x14, 0x7d, 0x98, 0x8d, 0x52, 0x32, 0xe7,
0x2f, 0xb2, 0x8a, 0x53, 0xf6, 0xdf, 0x9d, 0xf3, 0x45, 0x8e, 0x5d, 0x5b, 0x42, 0x1e, 0xd7, 0xc8,
0x1a, 0xac, 0x03, 0xc7, 0xfa, 0x22, 0x9e, 0xdb, 0x9c, 0xa2, 0x31, 0xc7, 0x1a, 0x6b, 0xcc, 0x61,
0x83, 0x58, 0xec, 0x87, 0x81, 0xe3, 0x8f, 0xe3, 0x47, 0xa0, 0xb6, 0x84, 0x9e, 0xc1, 0x35, 0xf6,
0x40, 0x0c, 0xcd, 0xd0, 0xa1, 0xa1, 0x63, 0xd1, 0x58, 0xe1, 0xd6, 0x7c, 0x85, 0x05, 0xe6, 0x57,
0x54, 0xe9, 0x42, 0x37, 0xf7, 0xff, 0x02, 0x5a, 0x97, 0x02, 0x99, 0xf4, 0xbf, 0x90, 0xfe, 0xfb,
0x0b, 0xf1, 0x26, 0xda, 0x1c, 0xe8, 0x64, 0x67, 0xef, 0xe8, 0xbd, 0x79, 0x02, 0x0a, 0xc3, 0xca,
0xfe, 0xfa, 0x22, 0xac, 0x89, 0xaa, 0x27, 0xd0, 0xc9, 0x4e, 0x77, 0xe5, 0xaa, 0xa4, 0x13, 0xe0,
0xfe, 0x69, 0xef, 0x6f, 0x6d, 0x09, 0xfd, 0x04, 0xae, 0x14, 0x46, 0xaa, 0xe8, 0x9b, 0x32, 0xf1,
0xf3, 0x26, 0xaf, 0x67, 0x69, 0x10, 0xd6, 0xcf, 0xbc, 0x38, 0xdf, 0xfa, 0xc2, 0x6c, 0x7d, 0x71,
0xeb, 0x53, 0xe2, 0x4f, 0xb3, 0xfe, 0x95, 0x35, 0x4c, 0x01, 0x15, 0x87, 0xaa, 0xe8, 0x03, 0x99,
0x8a, 0xb9, 0x83, 0xdd, 0xfe, 0xc6, 0xa2, 0xec, 0x49, 0xc8, 0xa7, 0xbc, 0x5a, 0xf3, 0xe3, 0x47,
0xa9, 0xda, 0xb9, 0xf3, 0x54, 0xb9, 0xda, 0xf9, 0x13, 0xc3, 0x28, 0xa9, 0xb3, 0x63, 0x1d, 0x79,
0xac, 0xa4, 0x63, 0x3c, 0x79, 0x52, 0xcb, 0xa7, 0x44, 0xda, 0x12, 0x32, 0x00, 0x76, 0x70, 0xf8,
0x08, 0x87, 0x81, 0x63, 0x51, 0xf4, 0xae, 0xb4, 0xc4, 0x67, 0x0c, 0xb1, 0x8e, 0x3b, 0x67, 0xf2,
0xc5, 0x0a, 0xb6, 0xfe, 0xd2, 0x80, 0x06, 0xf7, 0x2e, 0xbb, 0x1b, 0xff, 0x0f, 0xb8, 0x97, 0x00,
0xb8, 0x4f, 0xa1, 0x9b, 0x9b, 0xbe, 0xc9, 0x01, 0x57, 0x3e, 0xa2, 0x3b, 0xab, 0xf2, 0x46, 0x80,
0x8a, 0xa3, 0x2f, 0x79, 0x09, 0xcc, 0x1d, 0x91, 0x9d, 0xa5, 0xe3, 0x29, 0x74, 0x73, 0xa3, 0x27,
0xf9, 0x09, 0xe4, 0xf3, 0xa9, 0xb3, 0xa4, 0x7f, 0x0e, 0xad, 0xf4, 0x90, 0x01, 0xdd, 0x99, 0x87,
0x7b, 0xb9, 0xa7, 0xf5, 0xeb, 0x47, 0xbd, 0xcb, 0xbf, 0x15, 0x9e, 0x42, 0x37, 0x37, 0x57, 0x90,
0x7b, 0x5e, 0x3e, 0x7c, 0x38, 0x4b, 0xfa, 0x57, 0x08, 0xc7, 0x1e, 0x7c, 0xfc, 0x64, 0x6b, 0xec,
0x84, 0x47, 0xd3, 0x11, 0x3b, 0xe5, 0x66, 0xc4, 0xf9, 0x81, 0x43, 0xc4, 0xaf, 0xcd, 0xb8, 0xa0,
0x37, 0xb9, 0xa4, 0x4d, 0x6e, 0xed, 0x64, 0x34, 0xaa, 0xf2, 0xe5, 0xbd, 0xff, 0x04, 0x00, 0x00,
0xff, 0xff, 0x70, 0xb6, 0x53, 0xcf, 0x70, 0x22, 0x00, 0x00,
}
// Reference imports to suppress errors if they are not otherwise used.

View File

@ -245,6 +245,7 @@ func (lct *LoadCollectionTask) Execute(ctx context.Context) error {
PartitionID: partitionID,
CollectionID: collectionID,
BinlogPaths: segmentBingLog.FieldBinlogs,
NumOfRows: segmentBingLog.NumOfRows,
}
msgBase := proto.Clone(lct.Base).(*commonpb.MsgBase)
@ -548,6 +549,7 @@ func (lpt *LoadPartitionTask) Execute(ctx context.Context) error {
PartitionID: partitionID,
CollectionID: collectionID,
BinlogPaths: segmentBingLog.FieldBinlogs,
NumOfRows: segmentBingLog.NumOfRows,
}
msgBase := proto.Clone(lpt.Base).(*commonpb.MsgBase)
@ -1285,6 +1287,7 @@ func (lbt *LoadBalanceTask) Execute(ctx context.Context) error {
PartitionID: partitionID,
CollectionID: collectionID,
BinlogPaths: segmentBingLog.FieldBinlogs,
NumOfRows: segmentBingLog.NumOfRows,
}
msgBase := proto.Clone(lbt.Base).(*commonpb.MsgBase)

View File

@ -29,6 +29,8 @@ import (
"github.com/milvus-io/milvus/internal/storage"
"github.com/milvus-io/milvus/internal/types"
"github.com/milvus-io/milvus/internal/util/funcutil"
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/typeutil"
)
const (
@ -70,6 +72,11 @@ func (loader *segmentLoader) loadSegment(req *querypb.LoadSegmentsRequest, onSer
return nil
}
err := loader.checkSegmentMemory(req.Infos)
if err != nil {
return err
}
newSegments := make([]*Segment, 0)
segmentGC := func() {
for _, s := range newSegments {
@ -187,6 +194,48 @@ func (loader *segmentLoader) loadSegmentInternal(collectionID UniqueID, segment
return nil
}
func (loader *segmentLoader) checkSegmentMemory(segmentLoadInfos []*querypb.SegmentLoadInfo) error {
totalRAM := metricsinfo.GetMemoryCount()
usedRAM := metricsinfo.GetUsedMemoryCount()
segmentTotalSize := uint64(0)
for _, segInfo := range segmentLoadInfos {
collectionID := segInfo.CollectionID
segmentID := segInfo.SegmentID
col, err := loader.historicalReplica.getCollectionByID(collectionID)
if err != nil {
return err
}
sizePerRecord, err := typeutil.EstimateSizePerRecord(col.schema)
if err != nil {
return err
}
segmentSize := uint64(int64(sizePerRecord) * segInfo.NumOfRows)
segmentTotalSize += segmentSize
// TODO: get 0.9 from param table
thresholdMemSize := float64(totalRAM) * 0.9
log.Debug("memory size[byte] stats when load segment",
zap.Any("collectionIDs", collectionID),
zap.Any("segmentID", segmentID),
zap.Any("numOfRows", segInfo.NumOfRows),
zap.Any("totalRAM", totalRAM),
zap.Any("usedRAM", usedRAM),
zap.Any("segmentSize", segmentSize),
zap.Any("segmentTotalSize", segmentTotalSize),
zap.Any("thresholdMemSize", thresholdMemSize),
)
if usedRAM+segmentTotalSize > uint64(thresholdMemSize) {
return errors.New("load segment failed, OOM if load, collectionID = " + fmt.Sprintln(collectionID))
}
}
return nil
}
//func (loader *segmentLoader) GetSegmentStates(segmentID UniqueID) (*datapb.GetSegmentStatesResponse, error) {
// ctx := context.TODO()
// if loader.dataCoord == nil {

View File

@ -0,0 +1,76 @@
// Copyright (C) 2019-2020 Zilliz. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance
// with the License. You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software distributed under the License
// is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
// or implied. See the License for the specific language governing permissions and limitations under the License.
package querynode
import (
"context"
"testing"
"github.com/milvus-io/milvus/internal/proto/querypb"
"github.com/milvus-io/milvus/internal/util/metricsinfo"
"github.com/milvus-io/milvus/internal/util/typeutil"
"github.com/stretchr/testify/assert"
)
func TestSegmentLoader_CheckSegmentMemory(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
collectionID := UniqueID(0)
segmentID := UniqueID(0)
genSegmentLoader := func() *segmentLoader {
replica := newCollectionReplica(nil)
err := replica.addCollection(collectionID, genTestCollectionSchema(collectionID, false, 128))
assert.NoError(t, err)
loader := newSegmentLoader(ctx, nil, nil, replica, nil)
return loader
}
genSegmentLoadInfo := func() *querypb.SegmentLoadInfo {
return &querypb.SegmentLoadInfo{
SegmentID: segmentID,
PartitionID: UniqueID(0),
CollectionID: collectionID,
NumOfRows: 1000,
}
}
t.Run("valid test", func(t *testing.T) {
loader := genSegmentLoader()
err := loader.checkSegmentMemory([]*querypb.SegmentLoadInfo{genSegmentLoadInfo()})
assert.NoError(t, err)
})
t.Run("test no collection", func(t *testing.T) {
loader := genSegmentLoader()
loader.historicalReplica.freeAll()
err := loader.checkSegmentMemory([]*querypb.SegmentLoadInfo{genSegmentLoadInfo()})
assert.Error(t, err)
})
t.Run("test OOM", func(t *testing.T) {
totalRAM := metricsinfo.GetMemoryCount()
loader := genSegmentLoader()
col, err := loader.historicalReplica.getCollectionByID(collectionID)
assert.NoError(t, err)
sizePerRecord, err := typeutil.EstimateSizePerRecord(col.schema)
assert.NoError(t, err)
info := genSegmentLoadInfo()
info.NumOfRows = int64(totalRAM / uint64(sizePerRecord))
err = loader.checkSegmentMemory([]*querypb.SegmentLoadInfo{info})
assert.Error(t, err)
})
}