query_coord.pb.go 156.9 KB
Newer Older
1
// Code generated by protoc-gen-go. DO NOT EDIT.
2
// source: query_coord.proto
3 4 5 6 7 8 9

package querypb

import (
	context "context"
	fmt "fmt"
	proto "github.com/golang/protobuf/proto"
X
Xiangyu Wang 已提交
10
	commonpb "github.com/milvus-io/milvus/internal/proto/commonpb"
11
	datapb "github.com/milvus-io/milvus/internal/proto/datapb"
X
Xiangyu Wang 已提交
12 13 14
	internalpb "github.com/milvus-io/milvus/internal/proto/internalpb"
	milvuspb "github.com/milvus-io/milvus/internal/proto/milvuspb"
	schemapb "github.com/milvus-io/milvus/internal/proto/schemapb"
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
	grpc "google.golang.org/grpc"
	codes "google.golang.org/grpc/codes"
	status "google.golang.org/grpc/status"
	math "math"
)

// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf

// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package

32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
type DataScope int32

const (
	DataScope_UnKnown    DataScope = 0
	DataScope_All        DataScope = 1
	DataScope_Streaming  DataScope = 2
	DataScope_Historical DataScope = 3
)

var DataScope_name = map[int32]string{
	0: "UnKnown",
	1: "All",
	2: "Streaming",
	3: "Historical",
}

var DataScope_value = map[string]int32{
	"UnKnown":    0,
	"All":        1,
	"Streaming":  2,
	"Historical": 3,
}

func (x DataScope) String() string {
	return proto.EnumName(DataScope_name, int32(x))
}

func (DataScope) EnumDescriptor() ([]byte, []int) {
	return fileDescriptor_aab7cc9a69ed26e8, []int{0}
}

63 64 65 66 67
type PartitionState int32

const (
	PartitionState_NotExist        PartitionState = 0
	PartitionState_NotPresent      PartitionState = 1
X
xige-16 已提交
68
	PartitionState_OnDisk          PartitionState = 2
69 70 71 72 73 74 75 76 77
	PartitionState_PartialInMemory PartitionState = 3
	PartitionState_InMemory        PartitionState = 4
	PartitionState_PartialInGPU    PartitionState = 5
	PartitionState_InGPU           PartitionState = 6
)

var PartitionState_name = map[int32]string{
	0: "NotExist",
	1: "NotPresent",
X
xige-16 已提交
78
	2: "OnDisk",
79 80 81 82 83 84 85 86 87
	3: "PartialInMemory",
	4: "InMemory",
	5: "PartialInGPU",
	6: "InGPU",
}

var PartitionState_value = map[string]int32{
	"NotExist":        0,
	"NotPresent":      1,
X
xige-16 已提交
88
	"OnDisk":          2,
89 90 91 92 93 94 95 96 97 98 99
	"PartialInMemory": 3,
	"InMemory":        4,
	"PartialInGPU":    5,
	"InGPU":           6,
}

func (x PartitionState) String() string {
	return proto.EnumName(PartitionState_name, int32(x))
}

func (PartitionState) EnumDescriptor() ([]byte, []int) {
100
	return fileDescriptor_aab7cc9a69ed26e8, []int{1}
101 102
}

103 104 105
type TriggerCondition int32

const (
X
xige-16 已提交
106 107 108 109 110
	TriggerCondition_UnKnowCondition TriggerCondition = 0
	TriggerCondition_Handoff         TriggerCondition = 1
	TriggerCondition_LoadBalance     TriggerCondition = 2
	TriggerCondition_GrpcRequest     TriggerCondition = 3
	TriggerCondition_NodeDown        TriggerCondition = 4
111 112 113
)

var TriggerCondition_name = map[int32]string{
X
xige-16 已提交
114 115 116 117 118
	0: "UnKnowCondition",
	1: "Handoff",
	2: "LoadBalance",
	3: "GrpcRequest",
	4: "NodeDown",
119 120 121
}

var TriggerCondition_value = map[string]int32{
X
xige-16 已提交
122 123 124 125 126
	"UnKnowCondition": 0,
	"Handoff":         1,
	"LoadBalance":     2,
	"GrpcRequest":     3,
	"NodeDown":        4,
127 128 129 130 131 132 133
}

func (x TriggerCondition) String() string {
	return proto.EnumName(TriggerCondition_name, int32(x))
}

func (TriggerCondition) EnumDescriptor() ([]byte, []int) {
134
	return fileDescriptor_aab7cc9a69ed26e8, []int{2}
135 136
}

137 138 139
type LoadType int32

const (
140
	LoadType_UnKnownType    LoadType = 0
X
xige-16 已提交
141
	LoadType_LoadPartition  LoadType = 1
142
	LoadType_LoadCollection LoadType = 2
143 144 145
)

var LoadType_name = map[int32]string{
146
	0: "UnKnownType",
X
xige-16 已提交
147
	1: "LoadPartition",
148
	2: "LoadCollection",
149 150 151
}

var LoadType_value = map[string]int32{
152
	"UnKnownType":    0,
X
xige-16 已提交
153
	"LoadPartition":  1,
154
	"LoadCollection": 2,
155 156 157 158 159 160 161
}

func (x LoadType) String() string {
	return proto.EnumName(LoadType_name, int32(x))
}

func (LoadType) EnumDescriptor() ([]byte, []int) {
162
	return fileDescriptor_aab7cc9a69ed26e8, []int{3}
163 164
}

X
xige-16 已提交
165
//--------------------QueryCoord grpc request and response proto------------------
G
godchen 已提交
166
type ShowCollectionsRequest struct {
C
Cai Yudong 已提交
167 168 169 170 171 172 173
	Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	// Not useful for now
	DbID                 int64    `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionIDs        []int64  `protobuf:"varint,3,rep,packed,name=collectionIDs,proto3" json:"collectionIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
174 175
}

G
godchen 已提交
176 177 178 179
func (m *ShowCollectionsRequest) Reset()         { *m = ShowCollectionsRequest{} }
func (m *ShowCollectionsRequest) String() string { return proto.CompactTextString(m) }
func (*ShowCollectionsRequest) ProtoMessage()    {}
func (*ShowCollectionsRequest) Descriptor() ([]byte, []int) {
180
	return fileDescriptor_aab7cc9a69ed26e8, []int{0}
181 182
}

G
godchen 已提交
183 184
func (m *ShowCollectionsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ShowCollectionsRequest.Unmarshal(m, b)
185
}
G
godchen 已提交
186 187
func (m *ShowCollectionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ShowCollectionsRequest.Marshal(b, m, deterministic)
188
}
G
godchen 已提交
189 190
func (m *ShowCollectionsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ShowCollectionsRequest.Merge(m, src)
191
}
G
godchen 已提交
192 193
func (m *ShowCollectionsRequest) XXX_Size() int {
	return xxx_messageInfo_ShowCollectionsRequest.Size(m)
194
}
G
godchen 已提交
195 196
func (m *ShowCollectionsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_ShowCollectionsRequest.DiscardUnknown(m)
197 198
}

G
godchen 已提交
199
var xxx_messageInfo_ShowCollectionsRequest proto.InternalMessageInfo
200

G
godchen 已提交
201
func (m *ShowCollectionsRequest) GetBase() *commonpb.MsgBase {
202 203 204 205 206 207
	if m != nil {
		return m.Base
	}
	return nil
}

G
godchen 已提交
208
func (m *ShowCollectionsRequest) GetDbID() int64 {
209 210 211 212 213 214
	if m != nil {
		return m.DbID
	}
	return 0
}

215 216 217 218 219 220 221
func (m *ShowCollectionsRequest) GetCollectionIDs() []int64 {
	if m != nil {
		return m.CollectionIDs
	}
	return nil
}

G
godchen 已提交
222
type ShowCollectionsResponse struct {
X
xige-16 已提交
223 224
	Status               *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	CollectionIDs        []int64          `protobuf:"varint,2,rep,packed,name=collectionIDs,proto3" json:"collectionIDs,omitempty"`
225
	InMemoryPercentages  []int64          `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
X
xige-16 已提交
226 227 228
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
229 230
}

G
godchen 已提交
231 232 233 234
func (m *ShowCollectionsResponse) Reset()         { *m = ShowCollectionsResponse{} }
func (m *ShowCollectionsResponse) String() string { return proto.CompactTextString(m) }
func (*ShowCollectionsResponse) ProtoMessage()    {}
func (*ShowCollectionsResponse) Descriptor() ([]byte, []int) {
235
	return fileDescriptor_aab7cc9a69ed26e8, []int{1}
236 237
}

G
godchen 已提交
238 239
func (m *ShowCollectionsResponse) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ShowCollectionsResponse.Unmarshal(m, b)
240
}
G
godchen 已提交
241 242
func (m *ShowCollectionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ShowCollectionsResponse.Marshal(b, m, deterministic)
243
}
G
godchen 已提交
244 245
func (m *ShowCollectionsResponse) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ShowCollectionsResponse.Merge(m, src)
246
}
G
godchen 已提交
247 248
func (m *ShowCollectionsResponse) XXX_Size() int {
	return xxx_messageInfo_ShowCollectionsResponse.Size(m)
249
}
G
godchen 已提交
250 251
func (m *ShowCollectionsResponse) XXX_DiscardUnknown() {
	xxx_messageInfo_ShowCollectionsResponse.DiscardUnknown(m)
252 253
}

G
godchen 已提交
254
var xxx_messageInfo_ShowCollectionsResponse proto.InternalMessageInfo
255

G
godchen 已提交
256
func (m *ShowCollectionsResponse) GetStatus() *commonpb.Status {
X
xige-16 已提交
257 258 259 260 261 262
	if m != nil {
		return m.Status
	}
	return nil
}

G
godchen 已提交
263
func (m *ShowCollectionsResponse) GetCollectionIDs() []int64 {
264 265 266 267 268 269
	if m != nil {
		return m.CollectionIDs
	}
	return nil
}

270 271 272 273 274 275 276
func (m *ShowCollectionsResponse) GetInMemoryPercentages() []int64 {
	if m != nil {
		return m.InMemoryPercentages
	}
	return nil
}

277 278 279 280
type ShowPartitionsRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64             `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64             `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
281
	PartitionIDs         []int64           `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
282 283 284 285 286 287 288 289 290
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (m *ShowPartitionsRequest) Reset()         { *m = ShowPartitionsRequest{} }
func (m *ShowPartitionsRequest) String() string { return proto.CompactTextString(m) }
func (*ShowPartitionsRequest) ProtoMessage()    {}
func (*ShowPartitionsRequest) Descriptor() ([]byte, []int) {
291
	return fileDescriptor_aab7cc9a69ed26e8, []int{2}
292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332
}

func (m *ShowPartitionsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ShowPartitionsRequest.Unmarshal(m, b)
}
func (m *ShowPartitionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ShowPartitionsRequest.Marshal(b, m, deterministic)
}
func (m *ShowPartitionsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ShowPartitionsRequest.Merge(m, src)
}
func (m *ShowPartitionsRequest) XXX_Size() int {
	return xxx_messageInfo_ShowPartitionsRequest.Size(m)
}
func (m *ShowPartitionsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_ShowPartitionsRequest.DiscardUnknown(m)
}

var xxx_messageInfo_ShowPartitionsRequest proto.InternalMessageInfo

func (m *ShowPartitionsRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *ShowPartitionsRequest) GetDbID() int64 {
	if m != nil {
		return m.DbID
	}
	return 0
}

func (m *ShowPartitionsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

333 334 335 336 337 338 339
func (m *ShowPartitionsRequest) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
}

340 341 342
type ShowPartitionsResponse struct {
	Status               *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	PartitionIDs         []int64          `protobuf:"varint,2,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
343
	InMemoryPercentages  []int64          `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
344 345 346 347 348 349 350 351 352
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
}

func (m *ShowPartitionsResponse) Reset()         { *m = ShowPartitionsResponse{} }
func (m *ShowPartitionsResponse) String() string { return proto.CompactTextString(m) }
func (*ShowPartitionsResponse) ProtoMessage()    {}
func (*ShowPartitionsResponse) Descriptor() ([]byte, []int) {
353
	return fileDescriptor_aab7cc9a69ed26e8, []int{3}
354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
}

func (m *ShowPartitionsResponse) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ShowPartitionsResponse.Unmarshal(m, b)
}
func (m *ShowPartitionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ShowPartitionsResponse.Marshal(b, m, deterministic)
}
func (m *ShowPartitionsResponse) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ShowPartitionsResponse.Merge(m, src)
}
func (m *ShowPartitionsResponse) XXX_Size() int {
	return xxx_messageInfo_ShowPartitionsResponse.Size(m)
}
func (m *ShowPartitionsResponse) XXX_DiscardUnknown() {
	xxx_messageInfo_ShowPartitionsResponse.DiscardUnknown(m)
}

var xxx_messageInfo_ShowPartitionsResponse proto.InternalMessageInfo

func (m *ShowPartitionsResponse) GetStatus() *commonpb.Status {
	if m != nil {
		return m.Status
	}
	return nil
}

func (m *ShowPartitionsResponse) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
}

388 389 390 391 392 393 394
func (m *ShowPartitionsResponse) GetInMemoryPercentages() []int64 {
	if m != nil {
		return m.InMemoryPercentages
	}
	return nil
}

395
type LoadCollectionRequest struct {
396 397 398 399
	Base                 *commonpb.MsgBase          `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64                      `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64                      `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	Schema               *schemapb.CollectionSchema `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty"`
400
	ReplicaNumber        int32                      `protobuf:"varint,5,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
401 402 403
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
404 405 406 407 408 409
}

func (m *LoadCollectionRequest) Reset()         { *m = LoadCollectionRequest{} }
func (m *LoadCollectionRequest) String() string { return proto.CompactTextString(m) }
func (*LoadCollectionRequest) ProtoMessage()    {}
func (*LoadCollectionRequest) Descriptor() ([]byte, []int) {
410
	return fileDescriptor_aab7cc9a69ed26e8, []int{4}
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
}

func (m *LoadCollectionRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_LoadCollectionRequest.Unmarshal(m, b)
}
func (m *LoadCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_LoadCollectionRequest.Marshal(b, m, deterministic)
}
func (m *LoadCollectionRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_LoadCollectionRequest.Merge(m, src)
}
func (m *LoadCollectionRequest) XXX_Size() int {
	return xxx_messageInfo_LoadCollectionRequest.Size(m)
}
func (m *LoadCollectionRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_LoadCollectionRequest.DiscardUnknown(m)
}

var xxx_messageInfo_LoadCollectionRequest proto.InternalMessageInfo

431
func (m *LoadCollectionRequest) GetBase() *commonpb.MsgBase {
432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *LoadCollectionRequest) GetDbID() int64 {
	if m != nil {
		return m.DbID
	}
	return 0
}

func (m *LoadCollectionRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

452 453 454 455 456 457 458
func (m *LoadCollectionRequest) GetSchema() *schemapb.CollectionSchema {
	if m != nil {
		return m.Schema
	}
	return nil
}

459 460 461 462 463 464 465
func (m *LoadCollectionRequest) GetReplicaNumber() int32 {
	if m != nil {
		return m.ReplicaNumber
	}
	return 0
}

466
type ReleaseCollectionRequest struct {
467 468 469
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64             `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64             `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
470
	NodeID               int64             `protobuf:"varint,4,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
471 472 473
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
474 475 476 477 478 479
}

func (m *ReleaseCollectionRequest) Reset()         { *m = ReleaseCollectionRequest{} }
func (m *ReleaseCollectionRequest) String() string { return proto.CompactTextString(m) }
func (*ReleaseCollectionRequest) ProtoMessage()    {}
func (*ReleaseCollectionRequest) Descriptor() ([]byte, []int) {
480
	return fileDescriptor_aab7cc9a69ed26e8, []int{5}
481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500
}

func (m *ReleaseCollectionRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ReleaseCollectionRequest.Unmarshal(m, b)
}
func (m *ReleaseCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ReleaseCollectionRequest.Marshal(b, m, deterministic)
}
func (m *ReleaseCollectionRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ReleaseCollectionRequest.Merge(m, src)
}
func (m *ReleaseCollectionRequest) XXX_Size() int {
	return xxx_messageInfo_ReleaseCollectionRequest.Size(m)
}
func (m *ReleaseCollectionRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_ReleaseCollectionRequest.DiscardUnknown(m)
}

var xxx_messageInfo_ReleaseCollectionRequest proto.InternalMessageInfo

501
func (m *ReleaseCollectionRequest) GetBase() *commonpb.MsgBase {
502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *ReleaseCollectionRequest) GetDbID() int64 {
	if m != nil {
		return m.DbID
	}
	return 0
}

func (m *ReleaseCollectionRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

522 523 524 525 526 527 528
func (m *ReleaseCollectionRequest) GetNodeID() int64 {
	if m != nil {
		return m.NodeID
	}
	return 0
}

529 530 531 532 533 534
type LoadPartitionsRequest struct {
	Base                 *commonpb.MsgBase          `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64                      `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64                      `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64                    `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
	Schema               *schemapb.CollectionSchema `protobuf:"bytes,5,opt,name=schema,proto3" json:"schema,omitempty"`
535
	ReplicaNumber        int32                      `protobuf:"varint,6,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
536 537 538
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
539 540
}

541 542 543 544
func (m *LoadPartitionsRequest) Reset()         { *m = LoadPartitionsRequest{} }
func (m *LoadPartitionsRequest) String() string { return proto.CompactTextString(m) }
func (*LoadPartitionsRequest) ProtoMessage()    {}
func (*LoadPartitionsRequest) Descriptor() ([]byte, []int) {
545
	return fileDescriptor_aab7cc9a69ed26e8, []int{6}
546 547
}

548 549
func (m *LoadPartitionsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_LoadPartitionsRequest.Unmarshal(m, b)
550
}
551 552
func (m *LoadPartitionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_LoadPartitionsRequest.Marshal(b, m, deterministic)
553
}
554 555
func (m *LoadPartitionsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_LoadPartitionsRequest.Merge(m, src)
556
}
557 558
func (m *LoadPartitionsRequest) XXX_Size() int {
	return xxx_messageInfo_LoadPartitionsRequest.Size(m)
559
}
560 561
func (m *LoadPartitionsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_LoadPartitionsRequest.DiscardUnknown(m)
562 563
}

564
var xxx_messageInfo_LoadPartitionsRequest proto.InternalMessageInfo
565

566
func (m *LoadPartitionsRequest) GetBase() *commonpb.MsgBase {
567 568 569 570 571 572
	if m != nil {
		return m.Base
	}
	return nil
}

573
func (m *LoadPartitionsRequest) GetDbID() int64 {
574 575 576 577 578 579
	if m != nil {
		return m.DbID
	}
	return 0
}

580
func (m *LoadPartitionsRequest) GetCollectionID() int64 {
581 582 583 584 585 586
	if m != nil {
		return m.CollectionID
	}
	return 0
}

587 588 589 590 591
func (m *LoadPartitionsRequest) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
592 593
}

594 595 596 597 598
func (m *LoadPartitionsRequest) GetSchema() *schemapb.CollectionSchema {
	if m != nil {
		return m.Schema
	}
	return nil
599 600
}

601 602 603 604 605 606 607
func (m *LoadPartitionsRequest) GetReplicaNumber() int32 {
	if m != nil {
		return m.ReplicaNumber
	}
	return 0
}

608 609 610 611 612
type ReleasePartitionsRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64             `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64             `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64           `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
613
	NodeID               int64             `protobuf:"varint,5,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
614 615 616
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
617
}
618 619 620 621 622

func (m *ReleasePartitionsRequest) Reset()         { *m = ReleasePartitionsRequest{} }
func (m *ReleasePartitionsRequest) String() string { return proto.CompactTextString(m) }
func (*ReleasePartitionsRequest) ProtoMessage()    {}
func (*ReleasePartitionsRequest) Descriptor() ([]byte, []int) {
623
	return fileDescriptor_aab7cc9a69ed26e8, []int{7}
624
}
625 626 627

func (m *ReleasePartitionsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ReleasePartitionsRequest.Unmarshal(m, b)
628
}
629 630
func (m *ReleasePartitionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ReleasePartitionsRequest.Marshal(b, m, deterministic)
631
}
632 633 634 635 636 637 638 639
func (m *ReleasePartitionsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ReleasePartitionsRequest.Merge(m, src)
}
func (m *ReleasePartitionsRequest) XXX_Size() int {
	return xxx_messageInfo_ReleasePartitionsRequest.Size(m)
}
func (m *ReleasePartitionsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_ReleasePartitionsRequest.DiscardUnknown(m)
640 641
}

642
var xxx_messageInfo_ReleasePartitionsRequest proto.InternalMessageInfo
643

644
func (m *ReleasePartitionsRequest) GetBase() *commonpb.MsgBase {
X
xige-16 已提交
645
	if m != nil {
646
		return m.Base
X
xige-16 已提交
647 648 649 650
	}
	return nil
}

651
func (m *ReleasePartitionsRequest) GetDbID() int64 {
652
	if m != nil {
653
		return m.DbID
654
	}
655
	return 0
656 657
}

658 659 660 661 662
func (m *ReleasePartitionsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
663 664
}

665 666 667 668 669
func (m *ReleasePartitionsRequest) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
670 671
}

672 673 674 675 676 677 678
func (m *ReleasePartitionsRequest) GetNodeID() int64 {
	if m != nil {
		return m.NodeID
	}
	return 0
}

G
godchen 已提交
679
type GetPartitionStatesRequest struct {
680 681 682 683 684 685 686
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	DbID                 int64             `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64             `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64           `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
687 688
}

G
godchen 已提交
689 690 691 692
func (m *GetPartitionStatesRequest) Reset()         { *m = GetPartitionStatesRequest{} }
func (m *GetPartitionStatesRequest) String() string { return proto.CompactTextString(m) }
func (*GetPartitionStatesRequest) ProtoMessage()    {}
func (*GetPartitionStatesRequest) Descriptor() ([]byte, []int) {
693
	return fileDescriptor_aab7cc9a69ed26e8, []int{8}
694 695
}

G
godchen 已提交
696 697
func (m *GetPartitionStatesRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetPartitionStatesRequest.Unmarshal(m, b)
698
}
G
godchen 已提交
699 700
func (m *GetPartitionStatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetPartitionStatesRequest.Marshal(b, m, deterministic)
701
}
G
godchen 已提交
702 703
func (m *GetPartitionStatesRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetPartitionStatesRequest.Merge(m, src)
704
}
G
godchen 已提交
705 706
func (m *GetPartitionStatesRequest) XXX_Size() int {
	return xxx_messageInfo_GetPartitionStatesRequest.Size(m)
707
}
G
godchen 已提交
708 709
func (m *GetPartitionStatesRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_GetPartitionStatesRequest.DiscardUnknown(m)
710 711
}

G
godchen 已提交
712
var xxx_messageInfo_GetPartitionStatesRequest proto.InternalMessageInfo
713

G
godchen 已提交
714
func (m *GetPartitionStatesRequest) GetBase() *commonpb.MsgBase {
715 716 717 718 719 720
	if m != nil {
		return m.Base
	}
	return nil
}

G
godchen 已提交
721
func (m *GetPartitionStatesRequest) GetDbID() int64 {
722 723 724 725 726 727
	if m != nil {
		return m.DbID
	}
	return 0
}

G
godchen 已提交
728
func (m *GetPartitionStatesRequest) GetCollectionID() int64 {
729 730 731 732 733 734
	if m != nil {
		return m.CollectionID
	}
	return 0
}

G
godchen 已提交
735
func (m *GetPartitionStatesRequest) GetPartitionIDs() []int64 {
736 737 738 739 740 741
	if m != nil {
		return m.PartitionIDs
	}
	return nil
}

G
godchen 已提交
742
type GetPartitionStatesResponse struct {
X
xige-16 已提交
743 744
	Status                *commonpb.Status   `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	PartitionDescriptions []*PartitionStates `protobuf:"bytes,2,rep,name=partition_descriptions,json=partitionDescriptions,proto3" json:"partition_descriptions,omitempty"`
745 746 747 748 749
	XXX_NoUnkeyedLiteral  struct{}           `json:"-"`
	XXX_unrecognized      []byte             `json:"-"`
	XXX_sizecache         int32              `json:"-"`
}

G
godchen 已提交
750 751 752 753
func (m *GetPartitionStatesResponse) Reset()         { *m = GetPartitionStatesResponse{} }
func (m *GetPartitionStatesResponse) String() string { return proto.CompactTextString(m) }
func (*GetPartitionStatesResponse) ProtoMessage()    {}
func (*GetPartitionStatesResponse) Descriptor() ([]byte, []int) {
754
	return fileDescriptor_aab7cc9a69ed26e8, []int{9}
755 756
}

G
godchen 已提交
757 758
func (m *GetPartitionStatesResponse) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetPartitionStatesResponse.Unmarshal(m, b)
759
}
G
godchen 已提交
760 761
func (m *GetPartitionStatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetPartitionStatesResponse.Marshal(b, m, deterministic)
762
}
G
godchen 已提交
763 764
func (m *GetPartitionStatesResponse) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetPartitionStatesResponse.Merge(m, src)
765
}
G
godchen 已提交
766 767
func (m *GetPartitionStatesResponse) XXX_Size() int {
	return xxx_messageInfo_GetPartitionStatesResponse.Size(m)
768
}
G
godchen 已提交
769 770
func (m *GetPartitionStatesResponse) XXX_DiscardUnknown() {
	xxx_messageInfo_GetPartitionStatesResponse.DiscardUnknown(m)
771 772
}

G
godchen 已提交
773
var xxx_messageInfo_GetPartitionStatesResponse proto.InternalMessageInfo
774

G
godchen 已提交
775
func (m *GetPartitionStatesResponse) GetStatus() *commonpb.Status {
X
xige-16 已提交
776 777 778 779 780 781
	if m != nil {
		return m.Status
	}
	return nil
}

G
godchen 已提交
782
func (m *GetPartitionStatesResponse) GetPartitionDescriptions() []*PartitionStates {
783 784 785 786 787 788
	if m != nil {
		return m.PartitionDescriptions
	}
	return nil
}

789 790 791
type GetSegmentInfoRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	SegmentIDs           []int64           `protobuf:"varint,2,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
792
	CollectionID         int64             `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
793 794 795
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
796 797
}

798 799 800 801
func (m *GetSegmentInfoRequest) Reset()         { *m = GetSegmentInfoRequest{} }
func (m *GetSegmentInfoRequest) String() string { return proto.CompactTextString(m) }
func (*GetSegmentInfoRequest) ProtoMessage()    {}
func (*GetSegmentInfoRequest) Descriptor() ([]byte, []int) {
802
	return fileDescriptor_aab7cc9a69ed26e8, []int{10}
803 804
}

805 806
func (m *GetSegmentInfoRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetSegmentInfoRequest.Unmarshal(m, b)
807
}
808 809
func (m *GetSegmentInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetSegmentInfoRequest.Marshal(b, m, deterministic)
810
}
811 812
func (m *GetSegmentInfoRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetSegmentInfoRequest.Merge(m, src)
813
}
814 815
func (m *GetSegmentInfoRequest) XXX_Size() int {
	return xxx_messageInfo_GetSegmentInfoRequest.Size(m)
816
}
817 818
func (m *GetSegmentInfoRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_GetSegmentInfoRequest.DiscardUnknown(m)
819 820
}

821
var xxx_messageInfo_GetSegmentInfoRequest proto.InternalMessageInfo
822

823
func (m *GetSegmentInfoRequest) GetBase() *commonpb.MsgBase {
824 825 826 827 828 829
	if m != nil {
		return m.Base
	}
	return nil
}

830
func (m *GetSegmentInfoRequest) GetSegmentIDs() []int64 {
831
	if m != nil {
832 833 834 835 836
		return m.SegmentIDs
	}
	return nil
}

837 838 839 840 841 842 843
func (m *GetSegmentInfoRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

844
type GetSegmentInfoResponse struct {
X
xige-16 已提交
845
	Status               *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
846
	Infos                []*SegmentInfo   `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
X
xige-16 已提交
847 848 849
	XXX_NoUnkeyedLiteral struct{}         `json:"-"`
	XXX_unrecognized     []byte           `json:"-"`
	XXX_sizecache        int32            `json:"-"`
850 851
}

852 853 854 855
func (m *GetSegmentInfoResponse) Reset()         { *m = GetSegmentInfoResponse{} }
func (m *GetSegmentInfoResponse) String() string { return proto.CompactTextString(m) }
func (*GetSegmentInfoResponse) ProtoMessage()    {}
func (*GetSegmentInfoResponse) Descriptor() ([]byte, []int) {
856
	return fileDescriptor_aab7cc9a69ed26e8, []int{11}
857 858
}

859 860
func (m *GetSegmentInfoResponse) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetSegmentInfoResponse.Unmarshal(m, b)
861
}
862 863
func (m *GetSegmentInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetSegmentInfoResponse.Marshal(b, m, deterministic)
864
}
865 866
func (m *GetSegmentInfoResponse) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetSegmentInfoResponse.Merge(m, src)
867
}
868 869
func (m *GetSegmentInfoResponse) XXX_Size() int {
	return xxx_messageInfo_GetSegmentInfoResponse.Size(m)
870
}
871 872
func (m *GetSegmentInfoResponse) XXX_DiscardUnknown() {
	xxx_messageInfo_GetSegmentInfoResponse.DiscardUnknown(m)
873 874
}

875
var xxx_messageInfo_GetSegmentInfoResponse proto.InternalMessageInfo
876

877
func (m *GetSegmentInfoResponse) GetStatus() *commonpb.Status {
X
xige-16 已提交
878 879 880 881 882 883
	if m != nil {
		return m.Status
	}
	return nil
}

884
func (m *GetSegmentInfoResponse) GetInfos() []*SegmentInfo {
885
	if m != nil {
886
		return m.Infos
887
	}
888
	return nil
889 890
}

891 892 893 894 895 896 897 898 899 900 901 902
type GetShardLeadersRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	CollectionID         int64             `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (m *GetShardLeadersRequest) Reset()         { *m = GetShardLeadersRequest{} }
func (m *GetShardLeadersRequest) String() string { return proto.CompactTextString(m) }
func (*GetShardLeadersRequest) ProtoMessage()    {}
func (*GetShardLeadersRequest) Descriptor() ([]byte, []int) {
903
	return fileDescriptor_aab7cc9a69ed26e8, []int{12}
904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938
}

func (m *GetShardLeadersRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetShardLeadersRequest.Unmarshal(m, b)
}
func (m *GetShardLeadersRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetShardLeadersRequest.Marshal(b, m, deterministic)
}
func (m *GetShardLeadersRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetShardLeadersRequest.Merge(m, src)
}
func (m *GetShardLeadersRequest) XXX_Size() int {
	return xxx_messageInfo_GetShardLeadersRequest.Size(m)
}
func (m *GetShardLeadersRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_GetShardLeadersRequest.DiscardUnknown(m)
}

var xxx_messageInfo_GetShardLeadersRequest proto.InternalMessageInfo

func (m *GetShardLeadersRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *GetShardLeadersRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

type GetShardLeadersResponse struct {
939 940 941 942 943
	Status               *commonpb.Status    `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
	Shards               []*ShardLeadersList `protobuf:"bytes,2,rep,name=shards,proto3" json:"shards,omitempty"`
	XXX_NoUnkeyedLiteral struct{}            `json:"-"`
	XXX_unrecognized     []byte              `json:"-"`
	XXX_sizecache        int32               `json:"-"`
944 945 946 947 948 949
}

func (m *GetShardLeadersResponse) Reset()         { *m = GetShardLeadersResponse{} }
func (m *GetShardLeadersResponse) String() string { return proto.CompactTextString(m) }
func (*GetShardLeadersResponse) ProtoMessage()    {}
func (*GetShardLeadersResponse) Descriptor() ([]byte, []int) {
950
	return fileDescriptor_aab7cc9a69ed26e8, []int{13}
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977
}

func (m *GetShardLeadersResponse) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_GetShardLeadersResponse.Unmarshal(m, b)
}
func (m *GetShardLeadersResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_GetShardLeadersResponse.Marshal(b, m, deterministic)
}
func (m *GetShardLeadersResponse) XXX_Merge(src proto.Message) {
	xxx_messageInfo_GetShardLeadersResponse.Merge(m, src)
}
func (m *GetShardLeadersResponse) XXX_Size() int {
	return xxx_messageInfo_GetShardLeadersResponse.Size(m)
}
func (m *GetShardLeadersResponse) XXX_DiscardUnknown() {
	xxx_messageInfo_GetShardLeadersResponse.DiscardUnknown(m)
}

var xxx_messageInfo_GetShardLeadersResponse proto.InternalMessageInfo

func (m *GetShardLeadersResponse) GetStatus() *commonpb.Status {
	if m != nil {
		return m.Status
	}
	return nil
}

978
func (m *GetShardLeadersResponse) GetShards() []*ShardLeadersList {
979
	if m != nil {
980
		return m.Shards
981 982 983 984
	}
	return nil
}

985
type ShardLeadersList struct {
986
	ChannelName          string   `protobuf:"bytes,1,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
987 988
	NodeIds              []int64  `protobuf:"varint,2,rep,packed,name=node_ids,json=nodeIds,proto3" json:"node_ids,omitempty"`
	NodeAddrs            []string `protobuf:"bytes,3,rep,name=node_addrs,json=nodeAddrs,proto3" json:"node_addrs,omitempty"`
989 990 991 992 993
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

994 995 996 997
func (m *ShardLeadersList) Reset()         { *m = ShardLeadersList{} }
func (m *ShardLeadersList) String() string { return proto.CompactTextString(m) }
func (*ShardLeadersList) ProtoMessage()    {}
func (*ShardLeadersList) Descriptor() ([]byte, []int) {
998
	return fileDescriptor_aab7cc9a69ed26e8, []int{14}
999 1000
}

1001 1002
func (m *ShardLeadersList) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ShardLeadersList.Unmarshal(m, b)
1003
}
1004 1005
func (m *ShardLeadersList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ShardLeadersList.Marshal(b, m, deterministic)
1006
}
1007 1008
func (m *ShardLeadersList) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ShardLeadersList.Merge(m, src)
1009
}
1010 1011
func (m *ShardLeadersList) XXX_Size() int {
	return xxx_messageInfo_ShardLeadersList.Size(m)
1012
}
1013 1014
func (m *ShardLeadersList) XXX_DiscardUnknown() {
	xxx_messageInfo_ShardLeadersList.DiscardUnknown(m)
1015 1016
}

1017
var xxx_messageInfo_ShardLeadersList proto.InternalMessageInfo
1018

1019
func (m *ShardLeadersList) GetChannelName() string {
1020 1021 1022 1023 1024 1025
	if m != nil {
		return m.ChannelName
	}
	return ""
}

1026
func (m *ShardLeadersList) GetNodeIds() []int64 {
1027
	if m != nil {
1028
		return m.NodeIds
1029
	}
1030
	return nil
1031 1032
}

1033
func (m *ShardLeadersList) GetNodeAddrs() []string {
1034
	if m != nil {
1035
		return m.NodeAddrs
1036
	}
1037
	return nil
1038 1039
}

X
xige-16 已提交
1040
//-----------------query node grpc request and response proto----------------
1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053
type LoadMetaInfo struct {
	LoadType             LoadType `protobuf:"varint,1,opt,name=load_type,json=loadType,proto3,enum=milvus.proto.query.LoadType" json:"load_type,omitempty"`
	CollectionID         int64    `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64  `protobuf:"varint,3,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *LoadMetaInfo) Reset()         { *m = LoadMetaInfo{} }
func (m *LoadMetaInfo) String() string { return proto.CompactTextString(m) }
func (*LoadMetaInfo) ProtoMessage()    {}
func (*LoadMetaInfo) Descriptor() ([]byte, []int) {
1054
	return fileDescriptor_aab7cc9a69ed26e8, []int{15}
1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095
}

func (m *LoadMetaInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_LoadMetaInfo.Unmarshal(m, b)
}
func (m *LoadMetaInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_LoadMetaInfo.Marshal(b, m, deterministic)
}
func (m *LoadMetaInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_LoadMetaInfo.Merge(m, src)
}
func (m *LoadMetaInfo) XXX_Size() int {
	return xxx_messageInfo_LoadMetaInfo.Size(m)
}
func (m *LoadMetaInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_LoadMetaInfo.DiscardUnknown(m)
}

var xxx_messageInfo_LoadMetaInfo proto.InternalMessageInfo

func (m *LoadMetaInfo) GetLoadType() LoadType {
	if m != nil {
		return m.LoadType
	}
	return LoadType_UnKnownType
}

func (m *LoadMetaInfo) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

func (m *LoadMetaInfo) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
}

1096 1097 1098 1099
type WatchDmChannelsRequest 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"`
	CollectionID         int64                      `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
1100
	PartitionIDs         []int64                    `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
1101
	Infos                []*datapb.VchannelInfo     `protobuf:"bytes,5,rep,name=infos,proto3" json:"infos,omitempty"`
1102
	Schema               *schemapb.CollectionSchema `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
1103
	ExcludeInfos         []*datapb.SegmentInfo      `protobuf:"bytes,7,rep,name=exclude_infos,json=excludeInfos,proto3" json:"exclude_infos,omitempty"`
1104
	LoadMeta             *LoadMetaInfo              `protobuf:"bytes,8,opt,name=load_meta,json=loadMeta,proto3" json:"load_meta,omitempty"`
1105
	ReplicaID            int64                      `protobuf:"varint,9,opt,name=replicaID,proto3" json:"replicaID,omitempty"`
1106 1107 1108
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
1109 1110
}

1111 1112 1113 1114
func (m *WatchDmChannelsRequest) Reset()         { *m = WatchDmChannelsRequest{} }
func (m *WatchDmChannelsRequest) String() string { return proto.CompactTextString(m) }
func (*WatchDmChannelsRequest) ProtoMessage()    {}
func (*WatchDmChannelsRequest) Descriptor() ([]byte, []int) {
1115
	return fileDescriptor_aab7cc9a69ed26e8, []int{16}
1116 1117
}

1118 1119
func (m *WatchDmChannelsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_WatchDmChannelsRequest.Unmarshal(m, b)
1120
}
1121 1122
func (m *WatchDmChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_WatchDmChannelsRequest.Marshal(b, m, deterministic)
1123
}
1124 1125
func (m *WatchDmChannelsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_WatchDmChannelsRequest.Merge(m, src)
1126
}
1127 1128
func (m *WatchDmChannelsRequest) XXX_Size() int {
	return xxx_messageInfo_WatchDmChannelsRequest.Size(m)
1129
}
1130 1131
func (m *WatchDmChannelsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_WatchDmChannelsRequest.DiscardUnknown(m)
1132 1133
}

1134
var xxx_messageInfo_WatchDmChannelsRequest proto.InternalMessageInfo
1135

1136
func (m *WatchDmChannelsRequest) GetBase() *commonpb.MsgBase {
1137
	if m != nil {
1138
		return m.Base
1139
	}
1140
	return nil
1141 1142
}

1143
func (m *WatchDmChannelsRequest) GetNodeID() int64 {
1144
	if m != nil {
1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
		return m.NodeID
	}
	return 0
}

func (m *WatchDmChannelsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

1157
func (m *WatchDmChannelsRequest) GetPartitionIDs() []int64 {
1158
	if m != nil {
1159
		return m.PartitionIDs
1160
	}
1161
	return nil
1162 1163
}

1164
func (m *WatchDmChannelsRequest) GetInfos() []*datapb.VchannelInfo {
1165 1166
	if m != nil {
		return m.Infos
1167 1168 1169 1170
	}
	return nil
}

1171
func (m *WatchDmChannelsRequest) GetSchema() *schemapb.CollectionSchema {
1172
	if m != nil {
1173
		return m.Schema
1174 1175 1176 1177
	}
	return nil
}

1178
func (m *WatchDmChannelsRequest) GetExcludeInfos() []*datapb.SegmentInfo {
1179 1180 1181 1182
	if m != nil {
		return m.ExcludeInfos
	}
	return nil
1183 1184
}

1185 1186 1187 1188 1189 1190 1191
func (m *WatchDmChannelsRequest) GetLoadMeta() *LoadMetaInfo {
	if m != nil {
		return m.LoadMeta
	}
	return nil
}

1192 1193 1194 1195 1196 1197 1198
func (m *WatchDmChannelsRequest) GetReplicaID() int64 {
	if m != nil {
		return m.ReplicaID
	}
	return 0
}

1199 1200 1201 1202 1203
type WatchDeltaChannelsRequest 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"`
	CollectionID         int64                  `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	Infos                []*datapb.VchannelInfo `protobuf:"bytes,4,rep,name=infos,proto3" json:"infos,omitempty"`
1204
	ReplicaId            int64                  `protobuf:"varint,5,opt,name=replica_id,json=replicaId,proto3" json:"replica_id,omitempty"`
1205
	LoadMeta             *LoadMetaInfo          `protobuf:"bytes,9,opt,name=load_meta,json=loadMeta,proto3" json:"load_meta,omitempty"`
1206 1207 1208 1209 1210 1211 1212 1213 1214
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (m *WatchDeltaChannelsRequest) Reset()         { *m = WatchDeltaChannelsRequest{} }
func (m *WatchDeltaChannelsRequest) String() string { return proto.CompactTextString(m) }
func (*WatchDeltaChannelsRequest) ProtoMessage()    {}
func (*WatchDeltaChannelsRequest) Descriptor() ([]byte, []int) {
1215
	return fileDescriptor_aab7cc9a69ed26e8, []int{17}
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263
}

func (m *WatchDeltaChannelsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_WatchDeltaChannelsRequest.Unmarshal(m, b)
}
func (m *WatchDeltaChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_WatchDeltaChannelsRequest.Marshal(b, m, deterministic)
}
func (m *WatchDeltaChannelsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_WatchDeltaChannelsRequest.Merge(m, src)
}
func (m *WatchDeltaChannelsRequest) XXX_Size() int {
	return xxx_messageInfo_WatchDeltaChannelsRequest.Size(m)
}
func (m *WatchDeltaChannelsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_WatchDeltaChannelsRequest.DiscardUnknown(m)
}

var xxx_messageInfo_WatchDeltaChannelsRequest proto.InternalMessageInfo

func (m *WatchDeltaChannelsRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *WatchDeltaChannelsRequest) GetNodeID() int64 {
	if m != nil {
		return m.NodeID
	}
	return 0
}

func (m *WatchDeltaChannelsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

func (m *WatchDeltaChannelsRequest) GetInfos() []*datapb.VchannelInfo {
	if m != nil {
		return m.Infos
	}
	return nil
}

1264 1265 1266 1267 1268 1269 1270
func (m *WatchDeltaChannelsRequest) GetReplicaId() int64 {
	if m != nil {
		return m.ReplicaId
	}
	return 0
}

1271 1272 1273 1274 1275 1276 1277
func (m *WatchDeltaChannelsRequest) GetLoadMeta() *LoadMetaInfo {
	if m != nil {
		return m.LoadMeta
	}
	return nil
}

1278
type SegmentLoadInfo struct {
1279 1280 1281 1282 1283 1284 1285 1286 1287 1288
	SegmentID            int64                 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
	PartitionID          int64                 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
	CollectionID         int64                 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	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"`
	Statslogs            []*datapb.FieldBinlog `protobuf:"bytes,8,rep,name=statslogs,proto3" json:"statslogs,omitempty"`
	Deltalogs            []*datapb.FieldBinlog `protobuf:"bytes,9,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
	CompactionFrom       []int64               `protobuf:"varint,10,rep,packed,name=compactionFrom,proto3" json:"compactionFrom,omitempty"`
1289
	IndexInfos           []*FieldIndexInfo     `protobuf:"bytes,11,rep,name=index_infos,json=indexInfos,proto3" json:"index_infos,omitempty"`
1290
	SegmentSize          int64                 `protobuf:"varint,12,opt,name=segment_size,json=segmentSize,proto3" json:"segment_size,omitempty"`
1291
	InsertChannel        string                `protobuf:"bytes,13,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
1292 1293 1294
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
1295 1296
}

1297 1298 1299 1300
func (m *SegmentLoadInfo) Reset()         { *m = SegmentLoadInfo{} }
func (m *SegmentLoadInfo) String() string { return proto.CompactTextString(m) }
func (*SegmentLoadInfo) ProtoMessage()    {}
func (*SegmentLoadInfo) Descriptor() ([]byte, []int) {
1301
	return fileDescriptor_aab7cc9a69ed26e8, []int{18}
1302
}
1303 1304 1305

func (m *SegmentLoadInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SegmentLoadInfo.Unmarshal(m, b)
1306
}
1307 1308
func (m *SegmentLoadInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SegmentLoadInfo.Marshal(b, m, deterministic)
1309
}
1310 1311
func (m *SegmentLoadInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SegmentLoadInfo.Merge(m, src)
1312
}
1313 1314 1315 1316 1317
func (m *SegmentLoadInfo) XXX_Size() int {
	return xxx_messageInfo_SegmentLoadInfo.Size(m)
}
func (m *SegmentLoadInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_SegmentLoadInfo.DiscardUnknown(m)
1318 1319
}

1320
var xxx_messageInfo_SegmentLoadInfo proto.InternalMessageInfo
1321

1322
func (m *SegmentLoadInfo) GetSegmentID() int64 {
1323
	if m != nil {
1324
		return m.SegmentID
1325
	}
1326
	return 0
1327 1328
}

1329 1330 1331 1332 1333 1334 1335 1336
func (m *SegmentLoadInfo) GetPartitionID() int64 {
	if m != nil {
		return m.PartitionID
	}
	return 0
}

func (m *SegmentLoadInfo) GetCollectionID() int64 {
1337 1338 1339 1340 1341 1342
	if m != nil {
		return m.CollectionID
	}
	return 0
}

1343
func (m *SegmentLoadInfo) GetDbID() int64 {
1344
	if m != nil {
1345
		return m.DbID
1346
	}
1347
	return 0
1348 1349
}

1350
func (m *SegmentLoadInfo) GetFlushTime() int64 {
1351
	if m != nil {
1352 1353 1354 1355 1356
		return m.FlushTime
	}
	return 0
}

1357
func (m *SegmentLoadInfo) GetBinlogPaths() []*datapb.FieldBinlog {
1358 1359
	if m != nil {
		return m.BinlogPaths
1360 1361 1362 1363
	}
	return nil
}

1364 1365 1366 1367 1368 1369 1370
func (m *SegmentLoadInfo) GetNumOfRows() int64 {
	if m != nil {
		return m.NumOfRows
	}
	return 0
}

1371 1372 1373 1374 1375 1376 1377
func (m *SegmentLoadInfo) GetStatslogs() []*datapb.FieldBinlog {
	if m != nil {
		return m.Statslogs
	}
	return nil
}

1378
func (m *SegmentLoadInfo) GetDeltalogs() []*datapb.FieldBinlog {
1379 1380 1381 1382 1383 1384
	if m != nil {
		return m.Deltalogs
	}
	return nil
}

1385 1386 1387 1388 1389 1390 1391
func (m *SegmentLoadInfo) GetCompactionFrom() []int64 {
	if m != nil {
		return m.CompactionFrom
	}
	return nil
}

1392
func (m *SegmentLoadInfo) GetIndexInfos() []*FieldIndexInfo {
1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
	if m != nil {
		return m.IndexInfos
	}
	return nil
}

func (m *SegmentLoadInfo) GetSegmentSize() int64 {
	if m != nil {
		return m.SegmentSize
	}
	return 0
}

1406 1407 1408 1409 1410 1411 1412
func (m *SegmentLoadInfo) GetInsertChannel() string {
	if m != nil {
		return m.InsertChannel
	}
	return ""
}

1413
type FieldIndexInfo struct {
1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426
	FieldID              int64                    `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
	EnableIndex          bool                     `protobuf:"varint,2,opt,name=enable_index,json=enableIndex,proto3" json:"enable_index,omitempty"`
	IndexName            string                   `protobuf:"bytes,3,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
	IndexID              int64                    `protobuf:"varint,4,opt,name=indexID,proto3" json:"indexID,omitempty"`
	BuildID              int64                    `protobuf:"varint,5,opt,name=buildID,proto3" json:"buildID,omitempty"`
	IndexParams          []*commonpb.KeyValuePair `protobuf:"bytes,6,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
	IndexFilePaths       []string                 `protobuf:"bytes,7,rep,name=index_file_paths,json=indexFilePaths,proto3" json:"index_file_paths,omitempty"`
	IndexSize            int64                    `protobuf:"varint,8,opt,name=index_size,json=indexSize,proto3" json:"index_size,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                 `json:"-"`
	XXX_unrecognized     []byte                   `json:"-"`
	XXX_sizecache        int32                    `json:"-"`
}

1427 1428 1429 1430
func (m *FieldIndexInfo) Reset()         { *m = FieldIndexInfo{} }
func (m *FieldIndexInfo) String() string { return proto.CompactTextString(m) }
func (*FieldIndexInfo) ProtoMessage()    {}
func (*FieldIndexInfo) Descriptor() ([]byte, []int) {
1431
	return fileDescriptor_aab7cc9a69ed26e8, []int{19}
1432 1433
}

1434 1435
func (m *FieldIndexInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FieldIndexInfo.Unmarshal(m, b)
1436
}
1437 1438
func (m *FieldIndexInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FieldIndexInfo.Marshal(b, m, deterministic)
1439
}
1440 1441
func (m *FieldIndexInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FieldIndexInfo.Merge(m, src)
1442
}
1443 1444
func (m *FieldIndexInfo) XXX_Size() int {
	return xxx_messageInfo_FieldIndexInfo.Size(m)
1445
}
1446 1447
func (m *FieldIndexInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_FieldIndexInfo.DiscardUnknown(m)
1448 1449
}

1450
var xxx_messageInfo_FieldIndexInfo proto.InternalMessageInfo
1451

1452
func (m *FieldIndexInfo) GetFieldID() int64 {
1453 1454 1455 1456 1457 1458
	if m != nil {
		return m.FieldID
	}
	return 0
}

1459
func (m *FieldIndexInfo) GetEnableIndex() bool {
1460 1461 1462 1463 1464 1465
	if m != nil {
		return m.EnableIndex
	}
	return false
}

1466
func (m *FieldIndexInfo) GetIndexName() string {
1467 1468 1469 1470 1471 1472
	if m != nil {
		return m.IndexName
	}
	return ""
}

1473
func (m *FieldIndexInfo) GetIndexID() int64 {
1474 1475 1476 1477 1478 1479
	if m != nil {
		return m.IndexID
	}
	return 0
}

1480
func (m *FieldIndexInfo) GetBuildID() int64 {
1481
	if m != nil {
1482 1483 1484 1485 1486
		return m.BuildID
	}
	return 0
}

1487
func (m *FieldIndexInfo) GetIndexParams() []*commonpb.KeyValuePair {
1488 1489 1490 1491 1492 1493
	if m != nil {
		return m.IndexParams
	}
	return nil
}

1494
func (m *FieldIndexInfo) GetIndexFilePaths() []string {
1495 1496
	if m != nil {
		return m.IndexFilePaths
1497 1498 1499 1500
	}
	return nil
}

1501
func (m *FieldIndexInfo) GetIndexSize() int64 {
1502 1503 1504 1505 1506 1507
	if m != nil {
		return m.IndexSize
	}
	return 0
}

G
godchen 已提交
1508
type LoadSegmentsRequest struct {
1509
	Base                 *commonpb.MsgBase          `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
1510
	DstNodeID            int64                      `protobuf:"varint,2,opt,name=dst_nodeID,json=dstNodeID,proto3" json:"dst_nodeID,omitempty"`
1511 1512
	Infos                []*SegmentLoadInfo         `protobuf:"bytes,3,rep,name=infos,proto3" json:"infos,omitempty"`
	Schema               *schemapb.CollectionSchema `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty"`
X
xige-16 已提交
1513 1514
	SourceNodeID         int64                      `protobuf:"varint,5,opt,name=source_nodeID,json=sourceNodeID,proto3" json:"source_nodeID,omitempty"`
	CollectionID         int64                      `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
1515
	LoadMeta             *LoadMetaInfo              `protobuf:"bytes,7,opt,name=load_meta,json=loadMeta,proto3" json:"load_meta,omitempty"`
1516
	ReplicaID            int64                      `protobuf:"varint,8,opt,name=replicaID,proto3" json:"replicaID,omitempty"`
1517
	DeltaPositions       []*internalpb.MsgPosition  `protobuf:"bytes,9,rep,name=delta_positions,json=deltaPositions,proto3" json:"delta_positions,omitempty"`
1518 1519 1520
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
1521 1522
}

G
godchen 已提交
1523 1524 1525 1526
func (m *LoadSegmentsRequest) Reset()         { *m = LoadSegmentsRequest{} }
func (m *LoadSegmentsRequest) String() string { return proto.CompactTextString(m) }
func (*LoadSegmentsRequest) ProtoMessage()    {}
func (*LoadSegmentsRequest) Descriptor() ([]byte, []int) {
1527
	return fileDescriptor_aab7cc9a69ed26e8, []int{20}
1528 1529
}

G
godchen 已提交
1530 1531
func (m *LoadSegmentsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_LoadSegmentsRequest.Unmarshal(m, b)
1532
}
G
godchen 已提交
1533 1534
func (m *LoadSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_LoadSegmentsRequest.Marshal(b, m, deterministic)
1535
}
G
godchen 已提交
1536 1537
func (m *LoadSegmentsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_LoadSegmentsRequest.Merge(m, src)
1538
}
G
godchen 已提交
1539 1540
func (m *LoadSegmentsRequest) XXX_Size() int {
	return xxx_messageInfo_LoadSegmentsRequest.Size(m)
1541
}
G
godchen 已提交
1542 1543
func (m *LoadSegmentsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_LoadSegmentsRequest.DiscardUnknown(m)
1544 1545
}

G
godchen 已提交
1546
var xxx_messageInfo_LoadSegmentsRequest proto.InternalMessageInfo
1547

G
godchen 已提交
1548
func (m *LoadSegmentsRequest) GetBase() *commonpb.MsgBase {
1549 1550 1551 1552 1553 1554
	if m != nil {
		return m.Base
	}
	return nil
}

1555
func (m *LoadSegmentsRequest) GetDstNodeID() int64 {
1556
	if m != nil {
1557
		return m.DstNodeID
1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575
	}
	return 0
}

func (m *LoadSegmentsRequest) GetInfos() []*SegmentLoadInfo {
	if m != nil {
		return m.Infos
	}
	return nil
}

func (m *LoadSegmentsRequest) GetSchema() *schemapb.CollectionSchema {
	if m != nil {
		return m.Schema
	}
	return nil
}

1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589
func (m *LoadSegmentsRequest) GetSourceNodeID() int64 {
	if m != nil {
		return m.SourceNodeID
	}
	return 0
}

func (m *LoadSegmentsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

1590 1591 1592 1593 1594 1595 1596
func (m *LoadSegmentsRequest) GetLoadMeta() *LoadMetaInfo {
	if m != nil {
		return m.LoadMeta
	}
	return nil
}

1597 1598 1599 1600 1601 1602 1603
func (m *LoadSegmentsRequest) GetReplicaID() int64 {
	if m != nil {
		return m.ReplicaID
	}
	return 0
}

1604 1605 1606 1607 1608 1609 1610
func (m *LoadSegmentsRequest) GetDeltaPositions() []*internalpb.MsgPosition {
	if m != nil {
		return m.DeltaPositions
	}
	return nil
}

1611
type ReleaseSegmentsRequest struct {
C
Cai Yudong 已提交
1612 1613 1614 1615 1616 1617 1618 1619 1620 1621
	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"`
	// Not useful for now
	DbID                 int64    `protobuf:"varint,3,opt,name=dbID,proto3" json:"dbID,omitempty"`
	CollectionID         int64    `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64  `protobuf:"varint,5,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
	SegmentIDs           []int64  `protobuf:"varint,6,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
1622 1623 1624 1625 1626 1627
}

func (m *ReleaseSegmentsRequest) Reset()         { *m = ReleaseSegmentsRequest{} }
func (m *ReleaseSegmentsRequest) String() string { return proto.CompactTextString(m) }
func (*ReleaseSegmentsRequest) ProtoMessage()    {}
func (*ReleaseSegmentsRequest) Descriptor() ([]byte, []int) {
1628
	return fileDescriptor_aab7cc9a69ed26e8, []int{21}
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663
}

func (m *ReleaseSegmentsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ReleaseSegmentsRequest.Unmarshal(m, b)
}
func (m *ReleaseSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ReleaseSegmentsRequest.Marshal(b, m, deterministic)
}
func (m *ReleaseSegmentsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ReleaseSegmentsRequest.Merge(m, src)
}
func (m *ReleaseSegmentsRequest) XXX_Size() int {
	return xxx_messageInfo_ReleaseSegmentsRequest.Size(m)
}
func (m *ReleaseSegmentsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_ReleaseSegmentsRequest.DiscardUnknown(m)
}

var xxx_messageInfo_ReleaseSegmentsRequest proto.InternalMessageInfo

func (m *ReleaseSegmentsRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *ReleaseSegmentsRequest) GetNodeID() int64 {
	if m != nil {
		return m.NodeID
	}
	return 0
}

func (m *ReleaseSegmentsRequest) GetDbID() int64 {
1664 1665 1666 1667 1668 1669
	if m != nil {
		return m.DbID
	}
	return 0
}

1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690
func (m *ReleaseSegmentsRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

func (m *ReleaseSegmentsRequest) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
	}
	return nil
}

func (m *ReleaseSegmentsRequest) GetSegmentIDs() []int64 {
	if m != nil {
		return m.SegmentIDs
	}
	return nil
}

1691
type SearchRequest struct {
1692 1693 1694
	Req                  *internalpb.SearchRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
	DmlChannel           string                    `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
	SegmentIDs           []int64                   `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
1695 1696
	FromShardLeader      bool                      `protobuf:"varint,4,opt,name=from_shard_leader,json=fromShardLeader,proto3" json:"from_shard_leader,omitempty"`
	Scope                DataScope                 `protobuf:"varint,5,opt,name=scope,proto3,enum=milvus.proto.query.DataScope" json:"scope,omitempty"`
1697 1698 1699
	XXX_NoUnkeyedLiteral struct{}                  `json:"-"`
	XXX_unrecognized     []byte                    `json:"-"`
	XXX_sizecache        int32                     `json:"-"`
1700 1701 1702 1703 1704 1705
}

func (m *SearchRequest) Reset()         { *m = SearchRequest{} }
func (m *SearchRequest) String() string { return proto.CompactTextString(m) }
func (*SearchRequest) ProtoMessage()    {}
func (*SearchRequest) Descriptor() ([]byte, []int) {
1706
	return fileDescriptor_aab7cc9a69ed26e8, []int{22}
1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726
}

func (m *SearchRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SearchRequest.Unmarshal(m, b)
}
func (m *SearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SearchRequest.Marshal(b, m, deterministic)
}
func (m *SearchRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SearchRequest.Merge(m, src)
}
func (m *SearchRequest) XXX_Size() int {
	return xxx_messageInfo_SearchRequest.Size(m)
}
func (m *SearchRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_SearchRequest.DiscardUnknown(m)
}

var xxx_messageInfo_SearchRequest proto.InternalMessageInfo

1727
func (m *SearchRequest) GetReq() *internalpb.SearchRequest {
1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747
	if m != nil {
		return m.Req
	}
	return nil
}

func (m *SearchRequest) GetDmlChannel() string {
	if m != nil {
		return m.DmlChannel
	}
	return ""
}

func (m *SearchRequest) GetSegmentIDs() []int64 {
	if m != nil {
		return m.SegmentIDs
	}
	return nil
}

1748
func (m *SearchRequest) GetFromShardLeader() bool {
1749
	if m != nil {
1750
		return m.FromShardLeader
1751 1752 1753 1754
	}
	return false
}

1755 1756 1757 1758 1759 1760 1761
func (m *SearchRequest) GetScope() DataScope {
	if m != nil {
		return m.Scope
	}
	return DataScope_UnKnown
}

1762
type QueryRequest struct {
1763 1764 1765
	Req                  *internalpb.RetrieveRequest `protobuf:"bytes,1,opt,name=req,proto3" json:"req,omitempty"`
	DmlChannel           string                      `protobuf:"bytes,2,opt,name=dml_channel,json=dmlChannel,proto3" json:"dml_channel,omitempty"`
	SegmentIDs           []int64                     `protobuf:"varint,3,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
1766 1767
	FromShardLeader      bool                        `protobuf:"varint,4,opt,name=from_shard_leader,json=fromShardLeader,proto3" json:"from_shard_leader,omitempty"`
	Scope                DataScope                   `protobuf:"varint,5,opt,name=scope,proto3,enum=milvus.proto.query.DataScope" json:"scope,omitempty"`
1768 1769 1770
	XXX_NoUnkeyedLiteral struct{}                    `json:"-"`
	XXX_unrecognized     []byte                      `json:"-"`
	XXX_sizecache        int32                       `json:"-"`
1771 1772 1773 1774 1775 1776
}

func (m *QueryRequest) Reset()         { *m = QueryRequest{} }
func (m *QueryRequest) String() string { return proto.CompactTextString(m) }
func (*QueryRequest) ProtoMessage()    {}
func (*QueryRequest) Descriptor() ([]byte, []int) {
1777
	return fileDescriptor_aab7cc9a69ed26e8, []int{23}
1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797
}

func (m *QueryRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_QueryRequest.Unmarshal(m, b)
}
func (m *QueryRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_QueryRequest.Marshal(b, m, deterministic)
}
func (m *QueryRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_QueryRequest.Merge(m, src)
}
func (m *QueryRequest) XXX_Size() int {
	return xxx_messageInfo_QueryRequest.Size(m)
}
func (m *QueryRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_QueryRequest.DiscardUnknown(m)
}

var xxx_messageInfo_QueryRequest proto.InternalMessageInfo

1798
func (m *QueryRequest) GetReq() *internalpb.RetrieveRequest {
1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818
	if m != nil {
		return m.Req
	}
	return nil
}

func (m *QueryRequest) GetDmlChannel() string {
	if m != nil {
		return m.DmlChannel
	}
	return ""
}

func (m *QueryRequest) GetSegmentIDs() []int64 {
	if m != nil {
		return m.SegmentIDs
	}
	return nil
}

1819
func (m *QueryRequest) GetFromShardLeader() bool {
1820
	if m != nil {
1821
		return m.FromShardLeader
1822 1823 1824 1825
	}
	return false
}

1826 1827 1828 1829 1830 1831 1832
func (m *QueryRequest) GetScope() DataScope {
	if m != nil {
		return m.Scope
	}
	return DataScope_UnKnown
}

1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845
type SyncReplicaSegmentsRequest struct {
	Base                 *commonpb.MsgBase      `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	VchannelName         string                 `protobuf:"bytes,2,opt,name=vchannel_name,json=vchannelName,proto3" json:"vchannel_name,omitempty"`
	ReplicaSegments      []*ReplicaSegmentsInfo `protobuf:"bytes,3,rep,name=replica_segments,json=replicaSegments,proto3" json:"replica_segments,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (m *SyncReplicaSegmentsRequest) Reset()         { *m = SyncReplicaSegmentsRequest{} }
func (m *SyncReplicaSegmentsRequest) String() string { return proto.CompactTextString(m) }
func (*SyncReplicaSegmentsRequest) ProtoMessage()    {}
func (*SyncReplicaSegmentsRequest) Descriptor() ([]byte, []int) {
1846
	return fileDescriptor_aab7cc9a69ed26e8, []int{24}
1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900
}

func (m *SyncReplicaSegmentsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SyncReplicaSegmentsRequest.Unmarshal(m, b)
}
func (m *SyncReplicaSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SyncReplicaSegmentsRequest.Marshal(b, m, deterministic)
}
func (m *SyncReplicaSegmentsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SyncReplicaSegmentsRequest.Merge(m, src)
}
func (m *SyncReplicaSegmentsRequest) XXX_Size() int {
	return xxx_messageInfo_SyncReplicaSegmentsRequest.Size(m)
}
func (m *SyncReplicaSegmentsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_SyncReplicaSegmentsRequest.DiscardUnknown(m)
}

var xxx_messageInfo_SyncReplicaSegmentsRequest proto.InternalMessageInfo

func (m *SyncReplicaSegmentsRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *SyncReplicaSegmentsRequest) GetVchannelName() string {
	if m != nil {
		return m.VchannelName
	}
	return ""
}

func (m *SyncReplicaSegmentsRequest) GetReplicaSegments() []*ReplicaSegmentsInfo {
	if m != nil {
		return m.ReplicaSegments
	}
	return nil
}

type ReplicaSegmentsInfo struct {
	NodeId               int64    `protobuf:"varint,1,opt,name=node_id,json=nodeId,proto3" json:"node_id,omitempty"`
	PartitionId          int64    `protobuf:"varint,2,opt,name=partition_id,json=partitionId,proto3" json:"partition_id,omitempty"`
	SegmentIds           []int64  `protobuf:"varint,3,rep,packed,name=segment_ids,json=segmentIds,proto3" json:"segment_ids,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *ReplicaSegmentsInfo) Reset()         { *m = ReplicaSegmentsInfo{} }
func (m *ReplicaSegmentsInfo) String() string { return proto.CompactTextString(m) }
func (*ReplicaSegmentsInfo) ProtoMessage()    {}
func (*ReplicaSegmentsInfo) Descriptor() ([]byte, []int) {
1901
	return fileDescriptor_aab7cc9a69ed26e8, []int{25}
1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942
}

func (m *ReplicaSegmentsInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_ReplicaSegmentsInfo.Unmarshal(m, b)
}
func (m *ReplicaSegmentsInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_ReplicaSegmentsInfo.Marshal(b, m, deterministic)
}
func (m *ReplicaSegmentsInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_ReplicaSegmentsInfo.Merge(m, src)
}
func (m *ReplicaSegmentsInfo) XXX_Size() int {
	return xxx_messageInfo_ReplicaSegmentsInfo.Size(m)
}
func (m *ReplicaSegmentsInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_ReplicaSegmentsInfo.DiscardUnknown(m)
}

var xxx_messageInfo_ReplicaSegmentsInfo proto.InternalMessageInfo

func (m *ReplicaSegmentsInfo) GetNodeId() int64 {
	if m != nil {
		return m.NodeId
	}
	return 0
}

func (m *ReplicaSegmentsInfo) GetPartitionId() int64 {
	if m != nil {
		return m.PartitionId
	}
	return 0
}

func (m *ReplicaSegmentsInfo) GetSegmentIds() []int64 {
	if m != nil {
		return m.SegmentIds
	}
	return nil
}

X
xige-16 已提交
1943 1944 1945 1946 1947 1948 1949
//----------------request auto triggered by QueryCoord-----------------
type HandoffSegmentsRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	SegmentInfos         []*SegmentInfo    `protobuf:"bytes,2,rep,name=segmentInfos,proto3" json:"segmentInfos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
1950 1951
}

X
xige-16 已提交
1952 1953 1954 1955
func (m *HandoffSegmentsRequest) Reset()         { *m = HandoffSegmentsRequest{} }
func (m *HandoffSegmentsRequest) String() string { return proto.CompactTextString(m) }
func (*HandoffSegmentsRequest) ProtoMessage()    {}
func (*HandoffSegmentsRequest) Descriptor() ([]byte, []int) {
1956
	return fileDescriptor_aab7cc9a69ed26e8, []int{26}
1957 1958
}

X
xige-16 已提交
1959 1960
func (m *HandoffSegmentsRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_HandoffSegmentsRequest.Unmarshal(m, b)
1961
}
X
xige-16 已提交
1962 1963
func (m *HandoffSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_HandoffSegmentsRequest.Marshal(b, m, deterministic)
1964
}
X
xige-16 已提交
1965 1966
func (m *HandoffSegmentsRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_HandoffSegmentsRequest.Merge(m, src)
1967
}
X
xige-16 已提交
1968 1969 1970 1971 1972
func (m *HandoffSegmentsRequest) XXX_Size() int {
	return xxx_messageInfo_HandoffSegmentsRequest.Size(m)
}
func (m *HandoffSegmentsRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_HandoffSegmentsRequest.DiscardUnknown(m)
1973 1974
}

X
xige-16 已提交
1975
var xxx_messageInfo_HandoffSegmentsRequest proto.InternalMessageInfo
1976

X
xige-16 已提交
1977
func (m *HandoffSegmentsRequest) GetBase() *commonpb.MsgBase {
1978
	if m != nil {
X
xige-16 已提交
1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996
		return m.Base
	}
	return nil
}

func (m *HandoffSegmentsRequest) GetSegmentInfos() []*SegmentInfo {
	if m != nil {
		return m.SegmentInfos
	}
	return nil
}

type LoadBalanceRequest struct {
	Base                 *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	SourceNodeIDs        []int64           `protobuf:"varint,2,rep,packed,name=source_nodeIDs,json=sourceNodeIDs,proto3" json:"source_nodeIDs,omitempty"`
	BalanceReason        TriggerCondition  `protobuf:"varint,3,opt,name=balance_reason,json=balanceReason,proto3,enum=milvus.proto.query.TriggerCondition" json:"balance_reason,omitempty"`
	DstNodeIDs           []int64           `protobuf:"varint,4,rep,packed,name=dst_nodeIDs,json=dstNodeIDs,proto3" json:"dst_nodeIDs,omitempty"`
	SealedSegmentIDs     []int64           `protobuf:"varint,5,rep,packed,name=sealed_segmentIDs,json=sealedSegmentIDs,proto3" json:"sealed_segmentIDs,omitempty"`
1997
	CollectionID         int64             `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
X
xige-16 已提交
1998 1999 2000 2001 2002 2003 2004 2005 2006
	XXX_NoUnkeyedLiteral struct{}          `json:"-"`
	XXX_unrecognized     []byte            `json:"-"`
	XXX_sizecache        int32             `json:"-"`
}

func (m *LoadBalanceRequest) Reset()         { *m = LoadBalanceRequest{} }
func (m *LoadBalanceRequest) String() string { return proto.CompactTextString(m) }
func (*LoadBalanceRequest) ProtoMessage()    {}
func (*LoadBalanceRequest) Descriptor() ([]byte, []int) {
2007
	return fileDescriptor_aab7cc9a69ed26e8, []int{27}
X
xige-16 已提交
2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062
}

func (m *LoadBalanceRequest) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_LoadBalanceRequest.Unmarshal(m, b)
}
func (m *LoadBalanceRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_LoadBalanceRequest.Marshal(b, m, deterministic)
}
func (m *LoadBalanceRequest) XXX_Merge(src proto.Message) {
	xxx_messageInfo_LoadBalanceRequest.Merge(m, src)
}
func (m *LoadBalanceRequest) XXX_Size() int {
	return xxx_messageInfo_LoadBalanceRequest.Size(m)
}
func (m *LoadBalanceRequest) XXX_DiscardUnknown() {
	xxx_messageInfo_LoadBalanceRequest.DiscardUnknown(m)
}

var xxx_messageInfo_LoadBalanceRequest proto.InternalMessageInfo

func (m *LoadBalanceRequest) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

func (m *LoadBalanceRequest) GetSourceNodeIDs() []int64 {
	if m != nil {
		return m.SourceNodeIDs
	}
	return nil
}

func (m *LoadBalanceRequest) GetBalanceReason() TriggerCondition {
	if m != nil {
		return m.BalanceReason
	}
	return TriggerCondition_UnKnowCondition
}

func (m *LoadBalanceRequest) GetDstNodeIDs() []int64 {
	if m != nil {
		return m.DstNodeIDs
	}
	return nil
}

func (m *LoadBalanceRequest) GetSealedSegmentIDs() []int64 {
	if m != nil {
		return m.SealedSegmentIDs
	}
	return nil
}

2063 2064 2065 2066 2067 2068 2069
func (m *LoadBalanceRequest) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

X
xige-16 已提交
2070 2071
type DmChannelWatchInfo struct {
	CollectionID         int64    `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
2072 2073
	DmChannel            string   `protobuf:"bytes,2,opt,name=dmChannel,proto3" json:"dmChannel,omitempty"`
	NodeIDLoaded         int64    `protobuf:"varint,3,opt,name=nodeID_loaded,json=nodeIDLoaded,proto3" json:"nodeID_loaded,omitempty"`
2074
	ReplicaID            int64    `protobuf:"varint,4,opt,name=replicaID,proto3" json:"replicaID,omitempty"`
2075
	NodeIds              []int64  `protobuf:"varint,5,rep,packed,name=node_ids,json=nodeIds,proto3" json:"node_ids,omitempty"`
X
xige-16 已提交
2076 2077 2078 2079 2080 2081 2082 2083 2084
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *DmChannelWatchInfo) Reset()         { *m = DmChannelWatchInfo{} }
func (m *DmChannelWatchInfo) String() string { return proto.CompactTextString(m) }
func (*DmChannelWatchInfo) ProtoMessage()    {}
func (*DmChannelWatchInfo) Descriptor() ([]byte, []int) {
2085
	return fileDescriptor_aab7cc9a69ed26e8, []int{28}
X
xige-16 已提交
2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108
}

func (m *DmChannelWatchInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_DmChannelWatchInfo.Unmarshal(m, b)
}
func (m *DmChannelWatchInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_DmChannelWatchInfo.Marshal(b, m, deterministic)
}
func (m *DmChannelWatchInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_DmChannelWatchInfo.Merge(m, src)
}
func (m *DmChannelWatchInfo) XXX_Size() int {
	return xxx_messageInfo_DmChannelWatchInfo.Size(m)
}
func (m *DmChannelWatchInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_DmChannelWatchInfo.DiscardUnknown(m)
}

var xxx_messageInfo_DmChannelWatchInfo proto.InternalMessageInfo

func (m *DmChannelWatchInfo) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
2109 2110 2111 2112
	}
	return 0
}

X
xige-16 已提交
2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126
func (m *DmChannelWatchInfo) GetDmChannel() string {
	if m != nil {
		return m.DmChannel
	}
	return ""
}

func (m *DmChannelWatchInfo) GetNodeIDLoaded() int64 {
	if m != nil {
		return m.NodeIDLoaded
	}
	return 0
}

2127 2128 2129 2130 2131 2132 2133
func (m *DmChannelWatchInfo) GetReplicaID() int64 {
	if m != nil {
		return m.ReplicaID
	}
	return 0
}

2134 2135 2136 2137 2138 2139 2140
func (m *DmChannelWatchInfo) GetNodeIds() []int64 {
	if m != nil {
		return m.NodeIds
	}
	return nil
}

2141
type QueryChannelInfo struct {
2142
	CollectionID         int64                   `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
X
xige-16 已提交
2143 2144
	QueryChannel         string                  `protobuf:"bytes,2,opt,name=query_channel,json=queryChannel,proto3" json:"query_channel,omitempty"`
	QueryResultChannel   string                  `protobuf:"bytes,3,opt,name=query_result_channel,json=queryResultChannel,proto3" json:"query_result_channel,omitempty"`
2145 2146 2147 2148 2149
	GlobalSealedSegments []*SegmentInfo          `protobuf:"bytes,4,rep,name=global_sealed_segments,json=globalSealedSegments,proto3" json:"global_sealed_segments,omitempty"`
	SeekPosition         *internalpb.MsgPosition `protobuf:"bytes,5,opt,name=seek_position,json=seekPosition,proto3" json:"seek_position,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
2150 2151 2152 2153 2154 2155
}

func (m *QueryChannelInfo) Reset()         { *m = QueryChannelInfo{} }
func (m *QueryChannelInfo) String() string { return proto.CompactTextString(m) }
func (*QueryChannelInfo) ProtoMessage()    {}
func (*QueryChannelInfo) Descriptor() ([]byte, []int) {
2156
	return fileDescriptor_aab7cc9a69ed26e8, []int{29}
2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183
}

func (m *QueryChannelInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_QueryChannelInfo.Unmarshal(m, b)
}
func (m *QueryChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_QueryChannelInfo.Marshal(b, m, deterministic)
}
func (m *QueryChannelInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_QueryChannelInfo.Merge(m, src)
}
func (m *QueryChannelInfo) XXX_Size() int {
	return xxx_messageInfo_QueryChannelInfo.Size(m)
}
func (m *QueryChannelInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_QueryChannelInfo.DiscardUnknown(m)
}

var xxx_messageInfo_QueryChannelInfo proto.InternalMessageInfo

func (m *QueryChannelInfo) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

X
xige-16 已提交
2184
func (m *QueryChannelInfo) GetQueryChannel() string {
2185
	if m != nil {
X
xige-16 已提交
2186
		return m.QueryChannel
2187 2188 2189 2190
	}
	return ""
}

X
xige-16 已提交
2191
func (m *QueryChannelInfo) GetQueryResultChannel() string {
2192
	if m != nil {
X
xige-16 已提交
2193
		return m.QueryResultChannel
2194 2195 2196 2197
	}
	return ""
}

2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211
func (m *QueryChannelInfo) GetGlobalSealedSegments() []*SegmentInfo {
	if m != nil {
		return m.GlobalSealedSegments
	}
	return nil
}

func (m *QueryChannelInfo) GetSeekPosition() *internalpb.MsgPosition {
	if m != nil {
		return m.SeekPosition
	}
	return nil
}

X
xige-16 已提交
2212 2213 2214 2215 2216 2217 2218
type PartitionStates struct {
	PartitionID          int64          `protobuf:"varint,1,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
	State                PartitionState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.proto.query.PartitionState" json:"state,omitempty"`
	InMemoryPercentage   int64          `protobuf:"varint,3,opt,name=inMemory_percentage,json=inMemoryPercentage,proto3" json:"inMemory_percentage,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
2219 2220
}

X
xige-16 已提交
2221 2222 2223 2224
func (m *PartitionStates) Reset()         { *m = PartitionStates{} }
func (m *PartitionStates) String() string { return proto.CompactTextString(m) }
func (*PartitionStates) ProtoMessage()    {}
func (*PartitionStates) Descriptor() ([]byte, []int) {
2225
	return fileDescriptor_aab7cc9a69ed26e8, []int{30}
2226 2227
}

X
xige-16 已提交
2228 2229
func (m *PartitionStates) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_PartitionStates.Unmarshal(m, b)
2230
}
X
xige-16 已提交
2231 2232
func (m *PartitionStates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_PartitionStates.Marshal(b, m, deterministic)
2233
}
X
xige-16 已提交
2234 2235
func (m *PartitionStates) XXX_Merge(src proto.Message) {
	xxx_messageInfo_PartitionStates.Merge(m, src)
2236
}
X
xige-16 已提交
2237 2238
func (m *PartitionStates) XXX_Size() int {
	return xxx_messageInfo_PartitionStates.Size(m)
2239
}
X
xige-16 已提交
2240 2241
func (m *PartitionStates) XXX_DiscardUnknown() {
	xxx_messageInfo_PartitionStates.DiscardUnknown(m)
2242 2243
}

X
xige-16 已提交
2244
var xxx_messageInfo_PartitionStates proto.InternalMessageInfo
2245

X
xige-16 已提交
2246
func (m *PartitionStates) GetPartitionID() int64 {
2247
	if m != nil {
X
xige-16 已提交
2248
		return m.PartitionID
2249 2250 2251 2252
	}
	return 0
}

X
xige-16 已提交
2253
func (m *PartitionStates) GetState() PartitionState {
2254
	if m != nil {
X
xige-16 已提交
2255
		return m.State
2256
	}
X
xige-16 已提交
2257
	return PartitionState_NotExist
2258 2259
}

X
xige-16 已提交
2260
func (m *PartitionStates) GetInMemoryPercentage() int64 {
2261 2262 2263 2264 2265 2266
	if m != nil {
		return m.InMemoryPercentage
	}
	return 0
}

X
xige-16 已提交
2267
type SegmentInfo struct {
2268 2269 2270 2271
	SegmentID    int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
	CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionID  int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
	// deprecated, check node_ids(NodeIds) field
2272 2273 2274 2275 2276 2277 2278 2279 2280
	NodeID               int64                 `protobuf:"varint,4,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
	MemSize              int64                 `protobuf:"varint,5,opt,name=mem_size,json=memSize,proto3" json:"mem_size,omitempty"`
	NumRows              int64                 `protobuf:"varint,6,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
	IndexName            string                `protobuf:"bytes,7,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
	IndexID              int64                 `protobuf:"varint,8,opt,name=indexID,proto3" json:"indexID,omitempty"`
	DmChannel            string                `protobuf:"bytes,9,opt,name=dmChannel,proto3" json:"dmChannel,omitempty"`
	CompactionFrom       []int64               `protobuf:"varint,10,rep,packed,name=compactionFrom,proto3" json:"compactionFrom,omitempty"`
	CreatedByCompaction  bool                  `protobuf:"varint,11,opt,name=createdByCompaction,proto3" json:"createdByCompaction,omitempty"`
	SegmentState         commonpb.SegmentState `protobuf:"varint,12,opt,name=segment_state,json=segmentState,proto3,enum=milvus.proto.common.SegmentState" json:"segment_state,omitempty"`
2281
	IndexInfos           []*FieldIndexInfo     `protobuf:"bytes,13,rep,name=index_infos,json=indexInfos,proto3" json:"index_infos,omitempty"`
2282 2283
	ReplicaIds           []int64               `protobuf:"varint,14,rep,packed,name=replica_ids,json=replicaIds,proto3" json:"replica_ids,omitempty"`
	NodeIds              []int64               `protobuf:"varint,15,rep,packed,name=node_ids,json=nodeIds,proto3" json:"node_ids,omitempty"`
2284 2285 2286
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
2287 2288
}

X
xige-16 已提交
2289 2290 2291 2292
func (m *SegmentInfo) Reset()         { *m = SegmentInfo{} }
func (m *SegmentInfo) String() string { return proto.CompactTextString(m) }
func (*SegmentInfo) ProtoMessage()    {}
func (*SegmentInfo) Descriptor() ([]byte, []int) {
2293
	return fileDescriptor_aab7cc9a69ed26e8, []int{31}
2294 2295
}

X
xige-16 已提交
2296 2297
func (m *SegmentInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SegmentInfo.Unmarshal(m, b)
2298
}
X
xige-16 已提交
2299 2300
func (m *SegmentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SegmentInfo.Marshal(b, m, deterministic)
2301
}
X
xige-16 已提交
2302 2303
func (m *SegmentInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SegmentInfo.Merge(m, src)
2304
}
X
xige-16 已提交
2305 2306
func (m *SegmentInfo) XXX_Size() int {
	return xxx_messageInfo_SegmentInfo.Size(m)
2307
}
X
xige-16 已提交
2308 2309
func (m *SegmentInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_SegmentInfo.DiscardUnknown(m)
2310 2311
}

X
xige-16 已提交
2312
var xxx_messageInfo_SegmentInfo proto.InternalMessageInfo
2313

X
xige-16 已提交
2314
func (m *SegmentInfo) GetSegmentID() int64 {
2315 2316 2317 2318 2319 2320
	if m != nil {
		return m.SegmentID
	}
	return 0
}

X
xige-16 已提交
2321
func (m *SegmentInfo) GetCollectionID() int64 {
2322
	if m != nil {
X
xige-16 已提交
2323
		return m.CollectionID
2324 2325 2326 2327
	}
	return 0
}

X
xige-16 已提交
2328
func (m *SegmentInfo) GetPartitionID() int64 {
2329
	if m != nil {
X
xige-16 已提交
2330
		return m.PartitionID
2331 2332 2333 2334
	}
	return 0
}

X
xige-16 已提交
2335
func (m *SegmentInfo) GetNodeID() int64 {
2336
	if m != nil {
X
xige-16 已提交
2337
		return m.NodeID
2338
	}
Z
zhenshan.cao 已提交
2339
	return 0
2340 2341
}

X
xige-16 已提交
2342
func (m *SegmentInfo) GetMemSize() int64 {
2343
	if m != nil {
X
xige-16 已提交
2344
		return m.MemSize
2345
	}
2346
	return 0
2347 2348
}

X
xige-16 已提交
2349
func (m *SegmentInfo) GetNumRows() int64 {
2350
	if m != nil {
X
xige-16 已提交
2351
		return m.NumRows
2352
	}
X
xige-16 已提交
2353
	return 0
2354 2355
}

X
xige-16 已提交
2356
func (m *SegmentInfo) GetIndexName() string {
2357
	if m != nil {
X
xige-16 已提交
2358
		return m.IndexName
2359
	}
X
xige-16 已提交
2360
	return ""
2361 2362
}

X
xige-16 已提交
2363
func (m *SegmentInfo) GetIndexID() int64 {
2364
	if m != nil {
X
xige-16 已提交
2365
		return m.IndexID
2366
	}
X
xige-16 已提交
2367
	return 0
2368 2369
}

X
xige-16 已提交
2370 2371 2372 2373 2374
func (m *SegmentInfo) GetDmChannel() string {
	if m != nil {
		return m.DmChannel
	}
	return ""
X
xige-16 已提交
2375 2376
}

X
xige-16 已提交
2377 2378 2379 2380 2381
func (m *SegmentInfo) GetCompactionFrom() []int64 {
	if m != nil {
		return m.CompactionFrom
	}
	return nil
X
xige-16 已提交
2382 2383
}

X
xige-16 已提交
2384 2385 2386 2387 2388
func (m *SegmentInfo) GetCreatedByCompaction() bool {
	if m != nil {
		return m.CreatedByCompaction
	}
	return false
X
xige-16 已提交
2389 2390
}

X
xige-16 已提交
2391 2392 2393 2394 2395 2396
func (m *SegmentInfo) GetSegmentState() commonpb.SegmentState {
	if m != nil {
		return m.SegmentState
	}
	return commonpb.SegmentState_SegmentStateNone
}
X
xige-16 已提交
2397

2398
func (m *SegmentInfo) GetIndexInfos() []*FieldIndexInfo {
X
xige-16 已提交
2399
	if m != nil {
2400
		return m.IndexInfos
X
xige-16 已提交
2401 2402 2403 2404
	}
	return nil
}

2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418
func (m *SegmentInfo) GetReplicaIds() []int64 {
	if m != nil {
		return m.ReplicaIds
	}
	return nil
}

func (m *SegmentInfo) GetNodeIds() []int64 {
	if m != nil {
		return m.NodeIds
	}
	return nil
}

X
xige-16 已提交
2419 2420 2421 2422
type CollectionInfo struct {
	CollectionID         int64                      `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	PartitionIDs         []int64                    `protobuf:"varint,2,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
	PartitionStates      []*PartitionStates         `protobuf:"bytes,3,rep,name=partition_states,json=partitionStates,proto3" json:"partition_states,omitempty"`
2423 2424 2425 2426
	LoadType             LoadType                   `protobuf:"varint,4,opt,name=load_type,json=loadType,proto3,enum=milvus.proto.query.LoadType" json:"load_type,omitempty"`
	Schema               *schemapb.CollectionSchema `protobuf:"bytes,5,opt,name=schema,proto3" json:"schema,omitempty"`
	ReleasedPartitionIDs []int64                    `protobuf:"varint,6,rep,packed,name=released_partitionIDs,json=releasedPartitionIDs,proto3" json:"released_partitionIDs,omitempty"`
	InMemoryPercentage   int64                      `protobuf:"varint,7,opt,name=inMemory_percentage,json=inMemoryPercentage,proto3" json:"inMemory_percentage,omitempty"`
2427
	ReplicaIds           []int64                    `protobuf:"varint,8,rep,packed,name=replica_ids,json=replicaIds,proto3" json:"replica_ids,omitempty"`
2428
	ReplicaNumber        int32                      `protobuf:"varint,9,opt,name=replica_number,json=replicaNumber,proto3" json:"replica_number,omitempty"`
X
xige-16 已提交
2429 2430 2431
	XXX_NoUnkeyedLiteral struct{}                   `json:"-"`
	XXX_unrecognized     []byte                     `json:"-"`
	XXX_sizecache        int32                      `json:"-"`
2432 2433
}

X
xige-16 已提交
2434 2435 2436 2437
func (m *CollectionInfo) Reset()         { *m = CollectionInfo{} }
func (m *CollectionInfo) String() string { return proto.CompactTextString(m) }
func (*CollectionInfo) ProtoMessage()    {}
func (*CollectionInfo) Descriptor() ([]byte, []int) {
2438
	return fileDescriptor_aab7cc9a69ed26e8, []int{32}
2439 2440
}

X
xige-16 已提交
2441 2442
func (m *CollectionInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_CollectionInfo.Unmarshal(m, b)
2443
}
X
xige-16 已提交
2444 2445
func (m *CollectionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_CollectionInfo.Marshal(b, m, deterministic)
2446
}
X
xige-16 已提交
2447 2448
func (m *CollectionInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_CollectionInfo.Merge(m, src)
2449
}
X
xige-16 已提交
2450 2451
func (m *CollectionInfo) XXX_Size() int {
	return xxx_messageInfo_CollectionInfo.Size(m)
2452
}
X
xige-16 已提交
2453 2454
func (m *CollectionInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_CollectionInfo.DiscardUnknown(m)
2455 2456
}

X
xige-16 已提交
2457
var xxx_messageInfo_CollectionInfo proto.InternalMessageInfo
2458

X
xige-16 已提交
2459
func (m *CollectionInfo) GetCollectionID() int64 {
2460
	if m != nil {
X
xige-16 已提交
2461 2462 2463 2464 2465 2466 2467 2468
		return m.CollectionID
	}
	return 0
}

func (m *CollectionInfo) GetPartitionIDs() []int64 {
	if m != nil {
		return m.PartitionIDs
2469 2470 2471 2472
	}
	return nil
}

X
xige-16 已提交
2473
func (m *CollectionInfo) GetPartitionStates() []*PartitionStates {
2474
	if m != nil {
X
xige-16 已提交
2475
		return m.PartitionStates
2476
	}
2477
	return nil
2478 2479
}

X
xige-16 已提交
2480
func (m *CollectionInfo) GetLoadType() LoadType {
2481
	if m != nil {
X
xige-16 已提交
2482 2483
		return m.LoadType
	}
2484
	return LoadType_UnKnownType
X
xige-16 已提交
2485 2486 2487 2488 2489
}

func (m *CollectionInfo) GetSchema() *schemapb.CollectionSchema {
	if m != nil {
		return m.Schema
2490 2491 2492 2493
	}
	return nil
}

X
xige-16 已提交
2494
func (m *CollectionInfo) GetReleasedPartitionIDs() []int64 {
2495
	if m != nil {
X
xige-16 已提交
2496
		return m.ReleasedPartitionIDs
2497 2498 2499 2500
	}
	return nil
}

X
xige-16 已提交
2501 2502 2503 2504 2505 2506 2507
func (m *CollectionInfo) GetInMemoryPercentage() int64 {
	if m != nil {
		return m.InMemoryPercentage
	}
	return 0
}

2508 2509 2510 2511 2512 2513 2514
func (m *CollectionInfo) GetReplicaIds() []int64 {
	if m != nil {
		return m.ReplicaIds
	}
	return nil
}

2515 2516 2517 2518 2519 2520 2521
func (m *CollectionInfo) GetReplicaNumber() int32 {
	if m != nil {
		return m.ReplicaNumber
	}
	return 0
}

2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533
type UnsubscribeChannels struct {
	CollectionID         int64    `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
	Channels             []string `protobuf:"bytes,2,rep,name=channels,proto3" json:"channels,omitempty"`
	XXX_NoUnkeyedLiteral struct{} `json:"-"`
	XXX_unrecognized     []byte   `json:"-"`
	XXX_sizecache        int32    `json:"-"`
}

func (m *UnsubscribeChannels) Reset()         { *m = UnsubscribeChannels{} }
func (m *UnsubscribeChannels) String() string { return proto.CompactTextString(m) }
func (*UnsubscribeChannels) ProtoMessage()    {}
func (*UnsubscribeChannels) Descriptor() ([]byte, []int) {
2534
	return fileDescriptor_aab7cc9a69ed26e8, []int{33}
2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580
}

func (m *UnsubscribeChannels) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_UnsubscribeChannels.Unmarshal(m, b)
}
func (m *UnsubscribeChannels) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_UnsubscribeChannels.Marshal(b, m, deterministic)
}
func (m *UnsubscribeChannels) XXX_Merge(src proto.Message) {
	xxx_messageInfo_UnsubscribeChannels.Merge(m, src)
}
func (m *UnsubscribeChannels) XXX_Size() int {
	return xxx_messageInfo_UnsubscribeChannels.Size(m)
}
func (m *UnsubscribeChannels) XXX_DiscardUnknown() {
	xxx_messageInfo_UnsubscribeChannels.DiscardUnknown(m)
}

var xxx_messageInfo_UnsubscribeChannels proto.InternalMessageInfo

func (m *UnsubscribeChannels) GetCollectionID() int64 {
	if m != nil {
		return m.CollectionID
	}
	return 0
}

func (m *UnsubscribeChannels) GetChannels() []string {
	if m != nil {
		return m.Channels
	}
	return nil
}

type UnsubscribeChannelInfo struct {
	NodeID               int64                  `protobuf:"varint,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
	CollectionChannels   []*UnsubscribeChannels `protobuf:"bytes,2,rep,name=collection_channels,json=collectionChannels,proto3" json:"collection_channels,omitempty"`
	XXX_NoUnkeyedLiteral struct{}               `json:"-"`
	XXX_unrecognized     []byte                 `json:"-"`
	XXX_sizecache        int32                  `json:"-"`
}

func (m *UnsubscribeChannelInfo) Reset()         { *m = UnsubscribeChannelInfo{} }
func (m *UnsubscribeChannelInfo) String() string { return proto.CompactTextString(m) }
func (*UnsubscribeChannelInfo) ProtoMessage()    {}
func (*UnsubscribeChannelInfo) Descriptor() ([]byte, []int) {
2581
	return fileDescriptor_aab7cc9a69ed26e8, []int{34}
2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615
}

func (m *UnsubscribeChannelInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_UnsubscribeChannelInfo.Unmarshal(m, b)
}
func (m *UnsubscribeChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_UnsubscribeChannelInfo.Marshal(b, m, deterministic)
}
func (m *UnsubscribeChannelInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_UnsubscribeChannelInfo.Merge(m, src)
}
func (m *UnsubscribeChannelInfo) XXX_Size() int {
	return xxx_messageInfo_UnsubscribeChannelInfo.Size(m)
}
func (m *UnsubscribeChannelInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_UnsubscribeChannelInfo.DiscardUnknown(m)
}

var xxx_messageInfo_UnsubscribeChannelInfo proto.InternalMessageInfo

func (m *UnsubscribeChannelInfo) GetNodeID() int64 {
	if m != nil {
		return m.NodeID
	}
	return 0
}

func (m *UnsubscribeChannelInfo) GetCollectionChannels() []*UnsubscribeChannels {
	if m != nil {
		return m.CollectionChannels
	}
	return nil
}

X
xige-16 已提交
2616
//---- synchronize messages proto between QueryCoord and QueryNode -----
2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630
type SegmentChangeInfo struct {
	OnlineNodeID         int64          `protobuf:"varint,1,opt,name=online_nodeID,json=onlineNodeID,proto3" json:"online_nodeID,omitempty"`
	OnlineSegments       []*SegmentInfo `protobuf:"bytes,2,rep,name=online_segments,json=onlineSegments,proto3" json:"online_segments,omitempty"`
	OfflineNodeID        int64          `protobuf:"varint,3,opt,name=offline_nodeID,json=offlineNodeID,proto3" json:"offline_nodeID,omitempty"`
	OfflineSegments      []*SegmentInfo `protobuf:"bytes,4,rep,name=offline_segments,json=offlineSegments,proto3" json:"offline_segments,omitempty"`
	XXX_NoUnkeyedLiteral struct{}       `json:"-"`
	XXX_unrecognized     []byte         `json:"-"`
	XXX_sizecache        int32          `json:"-"`
}

func (m *SegmentChangeInfo) Reset()         { *m = SegmentChangeInfo{} }
func (m *SegmentChangeInfo) String() string { return proto.CompactTextString(m) }
func (*SegmentChangeInfo) ProtoMessage()    {}
func (*SegmentChangeInfo) Descriptor() ([]byte, []int) {
2631
	return fileDescriptor_aab7cc9a69ed26e8, []int{35}
2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679
}

func (m *SegmentChangeInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SegmentChangeInfo.Unmarshal(m, b)
}
func (m *SegmentChangeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SegmentChangeInfo.Marshal(b, m, deterministic)
}
func (m *SegmentChangeInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SegmentChangeInfo.Merge(m, src)
}
func (m *SegmentChangeInfo) XXX_Size() int {
	return xxx_messageInfo_SegmentChangeInfo.Size(m)
}
func (m *SegmentChangeInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_SegmentChangeInfo.DiscardUnknown(m)
}

var xxx_messageInfo_SegmentChangeInfo proto.InternalMessageInfo

func (m *SegmentChangeInfo) GetOnlineNodeID() int64 {
	if m != nil {
		return m.OnlineNodeID
	}
	return 0
}

func (m *SegmentChangeInfo) GetOnlineSegments() []*SegmentInfo {
	if m != nil {
		return m.OnlineSegments
	}
	return nil
}

func (m *SegmentChangeInfo) GetOfflineNodeID() int64 {
	if m != nil {
		return m.OfflineNodeID
	}
	return 0
}

func (m *SegmentChangeInfo) GetOfflineSegments() []*SegmentInfo {
	if m != nil {
		return m.OfflineSegments
	}
	return nil
}

2680
type SealedSegmentsChangeInfo struct {
2681 2682 2683 2684 2685
	Base                 *commonpb.MsgBase    `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
	Infos                []*SegmentChangeInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}             `json:"-"`
	XXX_unrecognized     []byte               `json:"-"`
	XXX_sizecache        int32                `json:"-"`
2686 2687 2688 2689 2690 2691
}

func (m *SealedSegmentsChangeInfo) Reset()         { *m = SealedSegmentsChangeInfo{} }
func (m *SealedSegmentsChangeInfo) String() string { return proto.CompactTextString(m) }
func (*SealedSegmentsChangeInfo) ProtoMessage()    {}
func (*SealedSegmentsChangeInfo) Descriptor() ([]byte, []int) {
2692
	return fileDescriptor_aab7cc9a69ed26e8, []int{36}
2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719
}

func (m *SealedSegmentsChangeInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_SealedSegmentsChangeInfo.Unmarshal(m, b)
}
func (m *SealedSegmentsChangeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_SealedSegmentsChangeInfo.Marshal(b, m, deterministic)
}
func (m *SealedSegmentsChangeInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_SealedSegmentsChangeInfo.Merge(m, src)
}
func (m *SealedSegmentsChangeInfo) XXX_Size() int {
	return xxx_messageInfo_SealedSegmentsChangeInfo.Size(m)
}
func (m *SealedSegmentsChangeInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_SealedSegmentsChangeInfo.DiscardUnknown(m)
}

var xxx_messageInfo_SealedSegmentsChangeInfo proto.InternalMessageInfo

func (m *SealedSegmentsChangeInfo) GetBase() *commonpb.MsgBase {
	if m != nil {
		return m.Base
	}
	return nil
}

2720
func (m *SealedSegmentsChangeInfo) GetInfos() []*SegmentChangeInfo {
2721
	if m != nil {
2722
		return m.Infos
2723 2724 2725 2726
	}
	return nil
}

2727
func init() {
2728
	proto.RegisterEnum("milvus.proto.query.DataScope", DataScope_name, DataScope_value)
2729
	proto.RegisterEnum("milvus.proto.query.PartitionState", PartitionState_name, PartitionState_value)
2730
	proto.RegisterEnum("milvus.proto.query.TriggerCondition", TriggerCondition_name, TriggerCondition_value)
2731
	proto.RegisterEnum("milvus.proto.query.LoadType", LoadType_name, LoadType_value)
G
godchen 已提交
2732 2733 2734 2735
	proto.RegisterType((*ShowCollectionsRequest)(nil), "milvus.proto.query.ShowCollectionsRequest")
	proto.RegisterType((*ShowCollectionsResponse)(nil), "milvus.proto.query.ShowCollectionsResponse")
	proto.RegisterType((*ShowPartitionsRequest)(nil), "milvus.proto.query.ShowPartitionsRequest")
	proto.RegisterType((*ShowPartitionsResponse)(nil), "milvus.proto.query.ShowPartitionsResponse")
2736 2737
	proto.RegisterType((*LoadCollectionRequest)(nil), "milvus.proto.query.LoadCollectionRequest")
	proto.RegisterType((*ReleaseCollectionRequest)(nil), "milvus.proto.query.ReleaseCollectionRequest")
G
godchen 已提交
2738 2739
	proto.RegisterType((*LoadPartitionsRequest)(nil), "milvus.proto.query.LoadPartitionsRequest")
	proto.RegisterType((*ReleasePartitionsRequest)(nil), "milvus.proto.query.ReleasePartitionsRequest")
2740 2741 2742 2743
	proto.RegisterType((*GetPartitionStatesRequest)(nil), "milvus.proto.query.GetPartitionStatesRequest")
	proto.RegisterType((*GetPartitionStatesResponse)(nil), "milvus.proto.query.GetPartitionStatesResponse")
	proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.proto.query.GetSegmentInfoRequest")
	proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.proto.query.GetSegmentInfoResponse")
2744 2745
	proto.RegisterType((*GetShardLeadersRequest)(nil), "milvus.proto.query.GetShardLeadersRequest")
	proto.RegisterType((*GetShardLeadersResponse)(nil), "milvus.proto.query.GetShardLeadersResponse")
2746
	proto.RegisterType((*ShardLeadersList)(nil), "milvus.proto.query.ShardLeadersList")
2747
	proto.RegisterType((*LoadMetaInfo)(nil), "milvus.proto.query.LoadMetaInfo")
2748
	proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.proto.query.WatchDmChannelsRequest")
2749
	proto.RegisterType((*WatchDeltaChannelsRequest)(nil), "milvus.proto.query.WatchDeltaChannelsRequest")
2750
	proto.RegisterType((*SegmentLoadInfo)(nil), "milvus.proto.query.SegmentLoadInfo")
2751
	proto.RegisterType((*FieldIndexInfo)(nil), "milvus.proto.query.FieldIndexInfo")
G
godchen 已提交
2752 2753
	proto.RegisterType((*LoadSegmentsRequest)(nil), "milvus.proto.query.LoadSegmentsRequest")
	proto.RegisterType((*ReleaseSegmentsRequest)(nil), "milvus.proto.query.ReleaseSegmentsRequest")
2754 2755
	proto.RegisterType((*SearchRequest)(nil), "milvus.proto.query.SearchRequest")
	proto.RegisterType((*QueryRequest)(nil), "milvus.proto.query.QueryRequest")
2756 2757
	proto.RegisterType((*SyncReplicaSegmentsRequest)(nil), "milvus.proto.query.SyncReplicaSegmentsRequest")
	proto.RegisterType((*ReplicaSegmentsInfo)(nil), "milvus.proto.query.ReplicaSegmentsInfo")
X
xige-16 已提交
2758
	proto.RegisterType((*HandoffSegmentsRequest)(nil), "milvus.proto.query.HandoffSegmentsRequest")
2759
	proto.RegisterType((*LoadBalanceRequest)(nil), "milvus.proto.query.LoadBalanceRequest")
X
xige-16 已提交
2760 2761 2762 2763 2764
	proto.RegisterType((*DmChannelWatchInfo)(nil), "milvus.proto.query.DmChannelWatchInfo")
	proto.RegisterType((*QueryChannelInfo)(nil), "milvus.proto.query.QueryChannelInfo")
	proto.RegisterType((*PartitionStates)(nil), "milvus.proto.query.PartitionStates")
	proto.RegisterType((*SegmentInfo)(nil), "milvus.proto.query.SegmentInfo")
	proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.query.CollectionInfo")
2765 2766
	proto.RegisterType((*UnsubscribeChannels)(nil), "milvus.proto.query.UnsubscribeChannels")
	proto.RegisterType((*UnsubscribeChannelInfo)(nil), "milvus.proto.query.UnsubscribeChannelInfo")
2767
	proto.RegisterType((*SegmentChangeInfo)(nil), "milvus.proto.query.SegmentChangeInfo")
2768
	proto.RegisterType((*SealedSegmentsChangeInfo)(nil), "milvus.proto.query.SealedSegmentsChangeInfo")
2769 2770
}

2771
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
2772

2773
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799
	// 2825 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x1a, 0x4d, 0x6c, 0x1c, 0x57,
	0xd9, 0xb3, 0xff, 0xfb, 0xed, 0xdf, 0xe4, 0x39, 0x71, 0xb7, 0x4b, 0xd2, 0xa6, 0x93, 0xa6, 0x35,
	0x2e, 0x75, 0x82, 0x03, 0xa8, 0x15, 0x20, 0x51, 0xdb, 0xc4, 0x35, 0x49, 0x5c, 0x33, 0xeb, 0x14,
	0x14, 0x55, 0x1a, 0x66, 0x67, 0xde, 0xae, 0x47, 0x9d, 0x9f, 0xf5, 0xbc, 0xd9, 0x24, 0xee, 0x99,
	0x0b, 0x7f, 0x42, 0xdc, 0x51, 0xc5, 0x01, 0x84, 0x90, 0xa8, 0xb8, 0x70, 0xe1, 0x82, 0x10, 0x17,
	0xae, 0x48, 0xdc, 0xb9, 0x22, 0xb8, 0x23, 0xae, 0xe8, 0xfd, 0xcc, 0xec, 0xcc, 0xec, 0x8c, 0x77,
	0xed, 0x6d, 0xda, 0x22, 0x71, 0xdb, 0xf7, 0xcd, 0xf7, 0xde, 0xf7, 0xff, 0xf7, 0xde, 0xc2, 0xa5,
	0x93, 0x09, 0xf6, 0x4f, 0x35, 0xc3, 0xf3, 0x7c, 0x73, 0x73, 0xec, 0x7b, 0x81, 0x87, 0x90, 0x63,
	0xd9, 0x8f, 0x27, 0x84, 0xaf, 0x36, 0xd9, 0xf7, 0x5e, 0xd3, 0xf0, 0x1c, 0xc7, 0x73, 0x39, 0xac,
	0xd7, 0x8c, 0x63, 0xf4, 0xda, 0x96, 0x1b, 0x60, 0xdf, 0xd5, 0xed, 0xf0, 0x2b, 0x31, 0x8e, 0xb1,
	0xa3, 0x8b, 0x95, 0x6c, 0xea, 0x81, 0x1e, 0x3f, 0x5f, 0xf9, 0xbe, 0x04, 0x6b, 0xfd, 0x63, 0xef,
	0xc9, 0x8e, 0x67, 0xdb, 0xd8, 0x08, 0x2c, 0xcf, 0x25, 0x2a, 0x3e, 0x99, 0x60, 0x12, 0xa0, 0xdb,
	0x50, 0x1a, 0xe8, 0x04, 0x77, 0xa5, 0xeb, 0xd2, 0x7a, 0x63, 0xeb, 0xea, 0x66, 0x82, 0x13, 0xc1,
	0xc2, 0x03, 0x32, 0xda, 0xd6, 0x09, 0x56, 0x19, 0x26, 0x42, 0x50, 0x32, 0x07, 0xfb, 0xbb, 0xdd,
	0xc2, 0x75, 0x69, 0xbd, 0xa8, 0xb2, 0xdf, 0xe8, 0x65, 0x68, 0x19, 0xd1, 0xd9, 0xfb, 0xbb, 0xa4,
	0x5b, 0xbc, 0x5e, 0x5c, 0x2f, 0xaa, 0x49, 0xa0, 0xf2, 0x6b, 0x09, 0x9e, 0x9b, 0x61, 0x83, 0x8c,
	0x3d, 0x97, 0x60, 0x74, 0x07, 0x2a, 0x24, 0xd0, 0x83, 0x09, 0x11, 0x9c, 0x7c, 0x2e, 0x93, 0x93,
	0x3e, 0x43, 0x51, 0x05, 0xea, 0x2c, 0xd9, 0x42, 0x06, 0x59, 0xf4, 0x45, 0xb8, 0x6c, 0xb9, 0x0f,
	0xb0, 0xe3, 0xf9, 0xa7, 0xda, 0x18, 0xfb, 0x06, 0x76, 0x03, 0x7d, 0x84, 0x43, 0x1e, 0x57, 0xc3,
	0x6f, 0x87, 0xd3, 0x4f, 0xca, 0xaf, 0x24, 0xb8, 0x42, 0x39, 0x3d, 0xd4, 0xfd, 0xc0, 0x7a, 0x06,
	0xfa, 0x52, 0xa0, 0x19, 0xe7, 0xb1, 0x5b, 0x64, 0xdf, 0x12, 0x30, 0x8a, 0x33, 0x0e, 0xc9, 0x53,
	0xd9, 0x4a, 0x8c, 0xdd, 0x04, 0x4c, 0xf9, 0xa5, 0x30, 0x6c, 0x9c, 0xcf, 0x65, 0x14, 0x9a, 0xa6,
	0x59, 0x98, 0xa5, 0x79, 0x11, 0x75, 0xfe, 0x43, 0x82, 0x2b, 0xf7, 0x3d, 0xdd, 0x9c, 0x1a, 0xfe,
	0x93, 0x57, 0xe7, 0xd7, 0xa1, 0xc2, 0xa3, 0xa4, 0x5b, 0x62, 0xb4, 0x6e, 0x26, 0x69, 0x89, 0x08,
	0x9a, 0x72, 0xd8, 0x67, 0x00, 0x55, 0x6c, 0x42, 0x37, 0xa1, 0xed, 0xe3, 0xb1, 0x6d, 0x19, 0xba,
2800
	0xe6, 0x4e, 0x9c, 0x01, 0xf6, 0xbb, 0xe5, 0xeb, 0xd2, 0x7a, 0x59, 0x6d, 0x09, 0xe8, 0x01, 0x03,
2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951
	0x2a, 0x3f, 0x97, 0xa0, 0xab, 0x62, 0x1b, 0xeb, 0x04, 0x7f, 0x9a, 0xc2, 0xae, 0x41, 0xc5, 0xf5,
	0x4c, 0xbc, 0xbf, 0xcb, 0x84, 0x2d, 0xaa, 0x62, 0xa5, 0xfc, 0xa8, 0xc0, 0x0d, 0xf1, 0x19, 0xf7,
	0xeb, 0x98, 0xb1, 0xca, 0x1f, 0x8f, 0xb1, 0x2a, 0x59, 0xc6, 0xfa, 0xd3, 0xd4, 0x58, 0x9f, 0x75,
	0x85, 0x4c, 0x0d, 0x5a, 0x4e, 0x18, 0xf4, 0x37, 0x12, 0x3c, 0xbf, 0x87, 0x83, 0x88, 0x7d, 0x1a,
	0xcf, 0xf8, 0x33, 0x9a, 0xac, 0x3e, 0x92, 0xa0, 0x97, 0xc5, 0xeb, 0x32, 0x09, 0xeb, 0x11, 0xac,
	0x45, 0x34, 0x34, 0x13, 0x13, 0xc3, 0xb7, 0xc6, 0xcc, 0x8c, 0x2c, 0x75, 0x35, 0xb6, 0x6e, 0x6c,
	0xce, 0x96, 0xd6, 0xcd, 0x34, 0x07, 0x57, 0xa2, 0x23, 0x76, 0x63, 0x27, 0x28, 0x3f, 0x91, 0xe0,
	0xca, 0x1e, 0x0e, 0xfa, 0x78, 0xe4, 0x60, 0x37, 0xd8, 0x77, 0x87, 0xde, 0xc5, 0xf5, 0xfa, 0x02,
	0x00, 0x11, 0xe7, 0x44, 0x69, 0x35, 0x06, 0x59, 0x44, 0xc7, 0xac, 0x8a, 0xa7, 0xf9, 0x59, 0x46,
	0x77, 0x5f, 0x86, 0xb2, 0xe5, 0x0e, 0xbd, 0x50, 0x55, 0x2f, 0x66, 0xa9, 0x2a, 0x4e, 0x8c, 0x63,
	0x2b, 0x2e, 0xe7, 0xe2, 0x58, 0xf7, 0xcd, 0xfb, 0x58, 0x37, 0xb1, 0xbf, 0x84, 0xbb, 0xa5, 0xc5,
	0x2e, 0x64, 0x88, 0xfd, 0x63, 0x09, 0x9e, 0x9b, 0x21, 0xb8, 0x8c, 0xdc, 0x5f, 0x83, 0x0a, 0xa1,
	0x87, 0x85, 0x82, 0xbf, 0x9c, 0x29, 0x78, 0x8c, 0xdc, 0x7d, 0x8b, 0x04, 0xaa, 0xd8, 0xa3, 0x78,
	0x20, 0xa7, 0xbf, 0xa1, 0x97, 0xa0, 0x69, 0x1c, 0xeb, 0xae, 0x8b, 0x6d, 0xcd, 0xd5, 0x1d, 0xae,
	0x80, 0xba, 0xda, 0x10, 0xb0, 0x03, 0xdd, 0xc1, 0xe8, 0x79, 0xa8, 0xd1, 0x90, 0xd5, 0x2c, 0x33,
	0x34, 0x7f, 0x95, 0x85, 0xb0, 0x49, 0xd0, 0x35, 0x00, 0xf6, 0x49, 0x37, 0x4d, 0x9f, 0x97, 0xd1,
	0xba, 0x5a, 0xa7, 0x90, 0xb7, 0x28, 0x40, 0xf9, 0x99, 0x04, 0x4d, 0x9a, 0xb3, 0x1f, 0xe0, 0x40,
	0xa7, 0x76, 0x40, 0x6f, 0x42, 0xdd, 0xf6, 0x74, 0x53, 0x0b, 0x4e, 0xc7, 0x9c, 0x54, 0x3b, 0xad,
	0x6b, 0x2e, 0x02, 0xdd, 0x74, 0x74, 0x3a, 0xc6, 0x6a, 0xcd, 0x16, 0xbf, 0x16, 0xd1, 0xf7, 0x4c,
	0x28, 0x17, 0x33, 0x42, 0xf9, 0xcf, 0x45, 0x58, 0xfb, 0x8e, 0x1e, 0x18, 0xc7, 0xbb, 0xce, 0x0e,
	0x17, 0x72, 0x09, 0x27, 0x98, 0xe6, 0xb6, 0x42, 0x3c, 0xb7, 0x7d, 0x6c, 0xb9, 0x33, 0xf2, 0xf3,
	0x72, 0x96, 0x9f, 0xd3, 0x66, 0x79, 0xf3, 0x5d, 0x61, 0xaa, 0x98, 0x9f, 0xc7, 0x6a, 0x50, 0xe5,
	0x22, 0x35, 0x68, 0x07, 0x5a, 0xf8, 0xa9, 0x61, 0x4f, 0xa8, 0xcd, 0x19, 0xf5, 0x2a, 0xa3, 0xfe,
	0x42, 0x06, 0xf5, 0x78, 0x90, 0x35, 0xc5, 0xa6, 0x7d, 0xc1, 0x03, 0x37, 0xb5, 0x83, 0x03, 0xbd,
	0x5b, 0x63, 0x6c, 0x5c, 0xcf, 0x33, 0x75, 0xe8, 0x1f, 0xdc, 0xdc, 0x74, 0x85, 0xae, 0x42, 0x5d,
	0x54, 0xbc, 0xfd, 0xdd, 0x6e, 0x9d, 0xa9, 0x6f, 0x0a, 0x50, 0x3e, 0x2c, 0xc0, 0xf3, 0xdc, 0x88,
	0xd8, 0x0e, 0xf4, 0x4f, 0xd7, 0x8e, 0x91, 0x8d, 0x4a, 0xe7, 0xb2, 0xd1, 0x35, 0x80, 0xb0, 0xd0,
	0x5b, 0xa6, 0x28, 0x8d, 0x91, 0x84, 0x66, 0x52, 0x7d, 0xf5, 0xf3, 0xaa, 0x4f, 0xf9, 0x63, 0x09,
	0x3a, 0xc2, 0x36, 0x14, 0x83, 0x05, 0xdf, 0x55, 0xa8, 0x47, 0x69, 0x9b, 0xe9, 0xa6, 0xa8, 0x4e,
	0x01, 0xe8, 0x3a, 0x34, 0x62, 0xae, 0x27, 0xf4, 0x10, 0x07, 0x2d, 0xa4, 0x8c, 0xb0, 0x08, 0x97,
	0x62, 0x45, 0xf8, 0x1a, 0xc0, 0xd0, 0x9e, 0x90, 0x63, 0x2d, 0xb0, 0x1c, 0x1c, 0x4a, 0xca, 0x20,
	0x47, 0x96, 0x83, 0xd1, 0x5b, 0xd0, 0x1c, 0x58, 0xae, 0xed, 0x8d, 0xb4, 0xb1, 0x1e, 0x1c, 0x93,
	0x6e, 0x25, 0xd7, 0xd9, 0xee, 0x5a, 0xd8, 0x36, 0xb7, 0x19, 0xae, 0xda, 0xe0, 0x7b, 0x0e, 0xe9,
	0x16, 0xf4, 0x02, 0x34, 0xdc, 0x89, 0xa3, 0x79, 0x43, 0xcd, 0xf7, 0x9e, 0x50, 0x77, 0x65, 0x24,
	0xdc, 0x89, 0xf3, 0xce, 0x50, 0xf5, 0x9e, 0xd0, 0xb4, 0x59, 0xa7, 0x09, 0x94, 0xd8, 0xde, 0x88,
	0x74, 0x6b, 0x0b, 0x9d, 0x3f, 0xdd, 0x40, 0x77, 0x9b, 0xd4, 0xcd, 0xd8, 0xee, 0xfa, 0x62, 0xbb,
	0xa3, 0x0d, 0xe8, 0x15, 0x68, 0x1b, 0x9e, 0x33, 0xd6, 0x99, 0x86, 0xee, 0xfa, 0x9e, 0xd3, 0x05,
	0x16, 0xe8, 0x29, 0x28, 0xda, 0x81, 0x86, 0xe5, 0x9a, 0xf8, 0xa9, 0x08, 0xb9, 0x06, 0xa3, 0xa3,
	0x64, 0x99, 0x9c, 0x11, 0xda, 0xa7, 0xb8, 0xcc, 0xe8, 0x60, 0x85, 0x3f, 0x09, 0xcd, 0xe6, 0xc2,
	0xa2, 0x1a, 0xb1, 0x3e, 0xc0, 0xdd, 0x26, 0xb7, 0xa2, 0x80, 0xf5, 0xad, 0x0f, 0x30, 0x6d, 0x30,
	0x2d, 0x97, 0x60, 0x3f, 0xd0, 0x84, 0x53, 0x76, 0x5b, 0x2c, 0xe5, 0xb7, 0x38, 0x54, 0xc4, 0x92,
	0xf2, 0xbb, 0x02, 0xb4, 0x93, 0x84, 0x50, 0x17, 0xaa, 0x43, 0x06, 0x09, 0xbd, 0x27, 0x5c, 0x52,
	0xb2, 0xd8, 0xd5, 0x07, 0x36, 0xcd, 0x17, 0x26, 0x7e, 0xca, 0x9c, 0xa7, 0xa6, 0x36, 0x38, 0x8c,
	0x1d, 0x40, 0x9d, 0x80, 0x8b, 0xc7, 0xaa, 0x4c, 0x91, 0x91, 0xac, 0x33, 0x08, 0xab, 0x31, 0x5d,
	0xa8, 0x72, 0x31, 0x42, 0xd7, 0x09, 0x97, 0xf4, 0xcb, 0x60, 0x62, 0x31, 0xaa, 0xdc, 0x75, 0xc2,
	0x25, 0xda, 0x85, 0x26, 0x3f, 0x72, 0xac, 0xfb, 0xba, 0x13, 0x3a, 0xce, 0x4b, 0x99, 0xe1, 0x7e,
	0x0f, 0x9f, 0xbe, 0xab, 0xdb, 0x13, 0x7c, 0xa8, 0x5b, 0xbe, 0xca, 0x15, 0x7d, 0xc8, 0x76, 0xa1,
	0x75, 0x90, 0xf9, 0x29, 0x43, 0xcb, 0xc6, 0xc2, 0x05, 0xab, 0xac, 0x90, 0xb5, 0x19, 0xfc, 0xae,
	0x65, 0x63, 0xee, 0x65, 0x91, 0x08, 0x4c, 0xb5, 0x35, 0xee, 0x64, 0x0c, 0x42, 0x15, 0xab, 0xfc,
	0xad, 0x08, 0xab, 0x34, 0xd6, 0x44, 0xd8, 0x2d, 0x91, 0x8d, 0xae, 0x01, 0x98, 0x24, 0xd0, 0x12,
	0x19, 0xa9, 0x6e, 0x92, 0xe0, 0x80, 0x27, 0xa5, 0x37, 0xc3, 0x84, 0x53, 0xcc, 0xef, 0x13, 0x53,
	0xb1, 0x3f, 0x5b, 0x18, 0x2e, 0x34, 0x49, 0xde, 0x80, 0x16, 0xf1, 0x26, 0xbe, 0x81, 0xb5, 0x44,
	0x47, 0xdf, 0xe4, 0xc0, 0x83, 0xec, 0x9c, 0x59, 0xc9, 0x9c, 0x68, 0x63, 0xd9, 0xad, 0xba, 0x5c,
	0x71, 0xa8, 0xa5, 0x8a, 0x03, 0xba, 0x07, 0x1d, 0x16, 0x7e, 0xda, 0xd8, 0x23, 0x7c, 0x30, 0x12,
	0x51, 0x9b, 0x8a, 0xa6, 0xe8, 0x26, 0xea, 0x01, 0x19, 0x1d, 0x0a, 0x54, 0xb5, 0xcd, 0xb6, 0x86,
	0x4b, 0xa2, 0xfc, 0x5d, 0x82, 0x35, 0x31, 0x68, 0x2d, 0x6f, 0xd8, 0xbc, 0x32, 0x13, 0x66, 0xcd,
	0xe2, 0x19, 0xa3, 0x4b, 0x69, 0x81, 0x16, 0xa2, 0x9c, 0xd1, 0x42, 0x24, 0xdb, 0xf7, 0x4a, 0xba,
	0x7d, 0x57, 0xfe, 0x29, 0x41, 0xab, 0x8f, 0x75, 0xdf, 0x38, 0x0e, 0xe5, 0xfa, 0x0a, 0x14, 0x7d,
	0x7c, 0x22, 0xc4, 0x7a, 0x39, 0x47, 0x67, 0x89, 0x2d, 0x2a, 0xdd, 0x80, 0x5e, 0x84, 0x86, 0xe9,
	0xd8, 0x51, 0x5a, 0x29, 0xb0, 0x18, 0x07, 0xd3, 0xb1, 0x45, 0x4e, 0x49, 0xb1, 0x52, 0x9c, 0x99,
	0x24, 0x36, 0xe0, 0xd2, 0xd0, 0xf7, 0x1c, 0x8d, 0xb5, 0xab, 0x9a, 0xcd, 0xba, 0x54, 0x26, 0x77,
	0x4d, 0xed, 0xd0, 0x0f, 0xb1, 0xe6, 0x15, 0xdd, 0x81, 0x32, 0x31, 0xbc, 0x31, 0xaf, 0x27, 0xed,
	0xad, 0x6b, 0x59, 0xde, 0xb3, 0xab, 0x07, 0x7a, 0x9f, 0x22, 0xa9, 0x1c, 0x57, 0xf9, 0x97, 0x04,
	0xcd, 0x6f, 0xd3, 0x4f, 0xa1, 0xa8, 0x6f, 0xc4, 0x45, 0x7d, 0x25, 0x47, 0x54, 0x15, 0x07, 0xbe,
	0x85, 0x1f, 0xe3, 0xff, 0x31, 0x61, 0xff, 0x22, 0x41, 0xaf, 0x7f, 0xea, 0x1a, 0x2a, 0x0f, 0x8c,
	0xe5, 0xbd, 0xf7, 0x06, 0xb4, 0x1e, 0x27, 0x66, 0x05, 0x2e, 0x74, 0xf3, 0x71, 0x7c, 0x58, 0x50,
	0x41, 0x0e, 0xdb, 0x1a, 0x21, 0x6c, 0x98, 0xa7, 0x5e, 0xcd, 0xe2, 0x3a, 0xc5, 0x1c, 0x8b, 0xf3,
	0x8e, 0x9f, 0x04, 0x2a, 0x3e, 0xac, 0x66, 0xe0, 0xa1, 0xe7, 0xa0, 0x2a, 0xe6, 0x12, 0x51, 0x8f,
	0x78, 0x38, 0x99, 0xb4, 0x1c, 0x4d, 0x27, 0x6b, 0xcb, 0x9c, 0xed, 0x65, 0x4c, 0x6a, 0xbe, 0xb0,
	0x50, 0xd2, 0xb1, 0x26, 0x65, 0x1e, 0x93, 0x28, 0x3f, 0x95, 0x60, 0xed, 0x6d, 0xdd, 0x35, 0xbd,
	0xe1, 0x70, 0x79, 0xcd, 0xed, 0x44, 0x65, 0x79, 0xff, 0x3c, 0x53, 0x6b, 0x62, 0x93, 0xf2, 0xdb,
	0x02, 0x20, 0x9a, 0x0f, 0xb7, 0x75, 0x5b, 0x77, 0x0d, 0x7c, 0x71, 0x6e, 0x6e, 0x42, 0x3b, 0x91,
	0xc5, 0xa3, 0xbb, 0xe7, 0x78, 0x1a, 0x27, 0xe8, 0x1e, 0xb4, 0x07, 0x9c, 0x94, 0xe6, 0x63, 0x9d,
	0x78, 0x2e, 0x4b, 0x4f, 0xed, 0xec, 0x99, 0xf3, 0xc8, 0xb7, 0x46, 0x23, 0xec, 0xef, 0x78, 0xae,
	0xc9, 0xf3, 0x68, 0x6b, 0x10, 0xb2, 0x49, 0xb7, 0xb2, 0x70, 0x89, 0x4a, 0x5a, 0x38, 0xeb, 0x40,
	0x54, 0xd3, 0x08, 0x7a, 0x0d, 0x2e, 0x11, 0xac, 0xdb, 0xd8, 0xd4, 0x62, 0x51, 0xc3, 0xf3, 0x99,
	0xcc, 0x3f, 0xf4, 0xf3, 0xaf, 0x1c, 0x32, 0x4a, 0x8c, 0xf2, 0x7b, 0x09, 0x50, 0x34, 0xe2, 0xb1,
	0x59, 0x81, 0x39, 0x4d, 0x7a, 0xab, 0x94, 0x91, 0x56, 0xaf, 0x42, 0xdd, 0x0c, 0x77, 0x0a, 0x27,
	0x9f, 0x02, 0x68, 0x18, 0x70, 0x31, 0x34, 0x5a, 0x8f, 0xb0, 0x19, 0xf6, 0xc1, 0x1c, 0x78, 0x9f,
	0xc1, 0x92, 0x15, 0xaa, 0x94, 0xae, 0x50, 0xf1, 0x89, 0xba, 0x9c, 0x98, 0xa8, 0x95, 0x8f, 0x0a,
	0x20, 0xb3, 0x14, 0xb5, 0x33, 0x1d, 0x19, 0x16, 0x62, 0xfa, 0x06, 0xb4, 0xc4, 0xeb, 0x4c, 0x82,
	0xf1, 0xe6, 0x49, 0xec, 0x30, 0x74, 0x1b, 0x2e, 0x73, 0x24, 0x1f, 0x93, 0x89, 0x3d, 0x6d, 0x01,
	0x79, 0x3f, 0x86, 0x4e, 0x78, 0x6e, 0xa4, 0x9f, 0xc2, 0x1d, 0x0f, 0x61, 0x6d, 0x64, 0x7b, 0x03,
	0xdd, 0xd6, 0x92, 0xe6, 0xc9, 0x19, 0x77, 0x66, 0x9d, 0xf8, 0x32, 0xdf, 0xde, 0x8f, 0xdb, 0x90,
	0xa0, 0x3d, 0x68, 0x11, 0x8c, 0xdf, 0x8f, 0x4a, 0xb4, 0xb8, 0x2c, 0x5d, 0xa4, 0x42, 0x37, 0xe9,
	0xc6, 0x70, 0xa5, 0x7c, 0x28, 0x41, 0x27, 0x75, 0x29, 0x96, 0x1e, 0x65, 0xa4, 0xd9, 0x51, 0xe6,
	0x0d, 0x28, 0xd3, 0xfe, 0x9e, 0xa7, 0xb0, 0x76, 0x76, 0x9b, 0x9d, 0x3c, 0x55, 0xe5, 0x1b, 0xd0,
	0x2d, 0x58, 0xcd, 0x78, 0x42, 0x10, 0x3e, 0x80, 0x66, 0x5f, 0x10, 0x94, 0x3f, 0x94, 0xa0, 0x11,
	0xd3, 0xc7, 0x9c, 0x29, 0x6c, 0x91, 0x5b, 0x8e, 0x94, 0x78, 0xc5, 0x59, 0xf1, 0x72, 0xee, 0xd0,
	0xa9, 0xdf, 0x39, 0xd8, 0xe1, 0xfd, 0xab, 0x68, 0xa6, 0x1d, 0xec, 0xb0, 0xb1, 0x80, 0xba, 0xe4,
	0xc4, 0xe1, 0xf3, 0x13, 0x0f, 0xa7, 0xaa, 0x3b, 0x71, 0xd8, 0xf4, 0x94, 0x6c, 0xdd, 0xab, 0x67,
	0xb4, 0xee, 0xb5, 0x64, 0xeb, 0x9e, 0x88, 0xa3, 0x7a, 0x3a, 0x8e, 0x16, 0x1d, 0x8c, 0x6e, 0xc3,
	0xaa, 0xe1, 0x63, 0x3d, 0xc0, 0xe6, 0xf6, 0xe9, 0x4e, 0xf4, 0xa9, 0xdb, 0x60, 0xa5, 0x32, 0xeb,
	0x13, 0xba, 0x4b, 0x9d, 0x4b, 0x4c, 0x41, 0xcc, 0xca, 0x4d, 0x66, 0xe5, 0xec, 0xc9, 0x40, 0xd8,
	0x86, 0x1b, 0x39, 0xcc, 0xb8, 0x6c, 0x95, 0x1e, 0xc9, 0x5a, 0x17, 0x1a, 0xc9, 0x5e, 0x84, 0xc6,
	0x74, 0xce, 0x27, 0xdd, 0x36, 0xcf, 0x7c, 0xd1, 0xa0, 0x4f, 0x12, 0xc9, 0xa0, 0x93, 0x4c, 0x06,
	0x7f, 0x2d, 0x42, 0x7b, 0xda, 0x8c, 0x2f, 0x9c, 0x0a, 0x16, 0x79, 0x0a, 0x3b, 0x00, 0x79, 0x5a,
	0x23, 0x99, 0x96, 0xce, 0x9c, 0x27, 0xd2, 0xf7, 0xce, 0x9d, 0x71, 0x2a, 0xe6, 0x12, 0x37, 0x7b,
	0xa5, 0x73, 0xdd, 0xec, 0x2d, 0xf9, 0x62, 0x72, 0x07, 0xae, 0xf8, 0xbc, 0x41, 0x37, 0xb5, 0x84,
	0xd8, 0xbc, 0xd7, 0xbd, 0x1c, 0x7e, 0x3c, 0x8c, 0x8b, 0x9f, 0x13, 0xc6, 0xd5, 0xbc, 0x30, 0x4e,
	0x9b, 0xb1, 0x36, 0x63, 0xc6, 0xd9, 0x87, 0x9b, 0x7a, 0xd6, 0xc3, 0xcd, 0x43, 0x58, 0x7d, 0xe8,
	0x92, 0xc9, 0x80, 0x18, 0xbe, 0x35, 0xc0, 0xe1, 0xcd, 0xd5, 0x42, 0x66, 0xed, 0x41, 0x4d, 0xe4,
	0x6b, 0x6e, 0xd2, 0xba, 0x1a, 0xad, 0x95, 0x1f, 0x4a, 0xb0, 0x36, 0x7b, 0x2e, 0xf3, 0x98, 0x69,
	0x32, 0x90, 0x12, 0xc9, 0xe0, 0xbb, 0xb0, 0x3a, 0x3d, 0x5e, 0x4b, 0x9c, 0x9c, 0xd3, 0xac, 0x65,
	0x30, 0xae, 0xa2, 0xe9, 0x19, 0x21, 0x4c, 0xf9, 0xb7, 0x04, 0x97, 0x44, 0x58, 0x51, 0xd8, 0x88,
	0xdd, 0x08, 0xd2, 0x02, 0xe5, 0xb9, 0xb6, 0xe5, 0x46, 0xc3, 0xa3, 0x90, 0x91, 0x03, 0xc5, 0xf0,
	0xf8, 0x36, 0x74, 0x04, 0x52, 0x54, 0x67, 0x16, 0x6c, 0x96, 0xda, 0x7c, 0x5f, 0x54, 0x61, 0x6e,
	0x42, 0xdb, 0x1b, 0x0e, 0xe3, 0xf4, 0x78, 0xa2, 0x6c, 0x09, 0xa8, 0x20, 0xf8, 0x2d, 0x90, 0x43,
	0xb4, 0xf3, 0x56, 0xb6, 0x8e, 0xd8, 0x18, 0xf5, 0xa9, 0x3f, 0x90, 0xa0, 0x9b, 0xac, 0x73, 0x31,
	0xf1, 0xcf, 0xdf, 0xa7, 0x7d, 0x35, 0xf9, 0xc8, 0x71, 0xf3, 0x0c, 0x7e, 0xa6, 0x74, 0xc4, 0xa4,
	0xbf, 0xf1, 0x0d, 0xa8, 0x47, 0x13, 0x01, 0x6a, 0x40, 0xf5, 0xa1, 0x7b, 0xcf, 0xf5, 0x9e, 0xb8,
	0xf2, 0x0a, 0xaa, 0x42, 0xf1, 0x2d, 0xdb, 0x96, 0x25, 0xd4, 0x82, 0x7a, 0x3f, 0xf0, 0xb1, 0xee,
	0x58, 0xee, 0x48, 0x2e, 0xa0, 0x36, 0xc0, 0xdb, 0x16, 0x09, 0x3c, 0xdf, 0x32, 0x74, 0x5b, 0x2e,
	0x6e, 0x7c, 0x00, 0xed, 0x64, 0xd4, 0xa3, 0x26, 0xd4, 0x0e, 0xbc, 0xe0, 0x9b, 0x4f, 0x2d, 0x12,
	0xc8, 0x2b, 0x14, 0xff, 0xc0, 0x0b, 0x0e, 0x7d, 0x4c, 0xb0, 0x1b, 0xc8, 0x12, 0x02, 0xa8, 0xbc,
	0xe3, 0xee, 0x5a, 0xe4, 0x7d, 0xb9, 0x80, 0x56, 0x45, 0x51, 0xd6, 0xed, 0x7d, 0x11, 0x4a, 0x72,
	0x91, 0x6e, 0x8f, 0x56, 0x25, 0x24, 0x43, 0x33, 0x42, 0xd9, 0x3b, 0x7c, 0x28, 0x97, 0x51, 0x1d,
	0xca, 0xfc, 0x67, 0x65, 0xc3, 0x04, 0x39, 0xdd, 0x51, 0xd2, 0x33, 0xb9, 0x10, 0x11, 0x48, 0x5e,
	0xa1, 0x92, 0x89, 0x2e, 0x5d, 0x96, 0x50, 0x07, 0x1a, 0xb1, 0x06, 0x59, 0x2e, 0x50, 0xc0, 0x9e,
	0x3f, 0x36, 0x44, 0xab, 0xcc, 0x59, 0xa0, 0x76, 0xdf, 0xa5, 0x9a, 0x28, 0x6d, 0x6c, 0x43, 0x2d,
	0x4c, 0x47, 0x14, 0x55, 0xa8, 0x88, 0x2e, 0xe5, 0x15, 0x74, 0x09, 0x5a, 0x89, 0xe7, 0x66, 0x59,
	0x42, 0x08, 0xda, 0xc9, 0xbf, 0x02, 0xc8, 0x85, 0xad, 0x5f, 0x34, 0x01, 0x78, 0xbf, 0xe6, 0x79,
	0xbe, 0x89, 0xc6, 0x80, 0xf6, 0x70, 0x40, 0x6b, 0x91, 0xe7, 0x86, 0x75, 0x84, 0xa0, 0xdb, 0x39,
	0x6d, 0xcd, 0x2c, 0xaa, 0x60, 0xb5, 0x97, 0x37, 0x8b, 0xa6, 0xd0, 0x95, 0x15, 0xe4, 0x30, 0x8a,
	0x47, 0x96, 0x83, 0x8f, 0x2c, 0xe3, 0xfd, 0xa8, 0xd1, 0xcb, 0xa7, 0x98, 0x42, 0x0d, 0x29, 0xa6,
	0xd2, 0xbe, 0x58, 0xf4, 0x03, 0xdf, 0x72, 0x47, 0xe1, 0xa3, 0x95, 0xb2, 0x82, 0x4e, 0xe0, 0xf2,
	0x1e, 0x66, 0xd4, 0x2d, 0x12, 0x58, 0x06, 0x09, 0x09, 0x6e, 0xe5, 0x13, 0x9c, 0x41, 0x3e, 0x27,
	0x49, 0x1b, 0x3a, 0xa9, 0xbf, 0xde, 0xa0, 0x8d, 0xec, 0x77, 0xaf, 0xac, 0xbf, 0x09, 0xf5, 0x5e,
	0x5b, 0x08, 0x37, 0xa2, 0x66, 0x41, 0x3b, 0xf9, 0xb7, 0x14, 0xf4, 0xf9, 0xbc, 0x03, 0x66, 0x5e,
	0xde, 0x7b, 0x1b, 0x8b, 0xa0, 0x46, 0xa4, 0x1e, 0x71, 0x7f, 0x9a, 0x47, 0x2a, 0xf3, 0x5f, 0x0f,
	0xbd, 0xb3, 0xde, 0x0b, 0x95, 0x15, 0xf4, 0x3d, 0xb8, 0x34, 0xf3, 0xff, 0x00, 0xf4, 0x85, 0xec,
	0x11, 0x3c, 0xfb, 0x6f, 0x04, 0xf3, 0x28, 0x3c, 0x4a, 0x47, 0x43, 0x3e, 0xf7, 0x33, 0xff, 0x27,
	0x59, 0x9c, 0xfb, 0xd8, 0xf1, 0x67, 0x71, 0x7f, 0x6e, 0x0a, 0x13, 0x16, 0x36, 0xe9, 0xc9, 0xe1,
	0xf5, 0x2c, 0x12, 0xb9, 0x7f, 0x52, 0xe8, 0x6d, 0x2e, 0x8a, 0x1e, 0xf7, 0xae, 0xe4, 0x3b, 0x78,
	0xb6, 0xd2, 0x32, 0xdf, 0xee, 0xb3, 0xbd, 0x2b, 0xfb, 0x59, 0x5d, 0x59, 0x41, 0x47, 0x89, 0x6c,
	0x88, 0x5e, 0xc9, 0x33, 0x4e, 0xf2, 0x3e, 0x61, 0x9e, 0xde, 0x34, 0x80, 0x3d, 0x1c, 0x3c, 0xc0,
	0x81, 0x6f, 0x19, 0x24, 0x7d, 0xa8, 0x58, 0x4c, 0x11, 0xc2, 0x43, 0x5f, 0x9d, 0x8b, 0x17, 0xb1,
	0x3d, 0x80, 0xc6, 0x1e, 0x0e, 0xc4, 0x7d, 0x0f, 0x41, 0xb9, 0x3b, 0x43, 0x8c, 0x90, 0xc4, 0xfa,
	0x7c, 0xc4, 0x78, 0x46, 0x49, 0x3d, 0xcb, 0xa3, 0x5c, 0xdd, 0xce, 0xfe, 0x59, 0x20, 0x3b, 0xa3,
	0xe4, 0xbc, 0xf3, 0x2b, 0x2b, 0x5b, 0xff, 0x01, 0xa8, 0xb3, 0x12, 0x41, 0x4b, 0xcf, 0xff, 0x2b,
	0xc4, 0x33, 0xa8, 0x10, 0xef, 0x41, 0x27, 0xf5, 0xa4, 0x9f, 0x6d, 0xcf, 0xec, 0x77, 0xff, 0x79,
	0x2e, 0x3f, 0x00, 0x34, 0xfb, 0xd6, 0x9c, 0x9d, 0x2a, 0x72, 0xdf, 0xa4, 0xe7, 0xd1, 0x78, 0x97,
	0xff, 0x51, 0x22, 0xea, 0x5e, 0x5f, 0xcd, 0x8b, 0xd6, 0xd4, 0x65, 0xe4, 0xa7, 0x9f, 0x48, 0x9f,
	0x7d, 0xa1, 0x79, 0x0f, 0x3a, 0xa9, 0x17, 0x98, 0x6c, 0xeb, 0x66, 0x3f, 0xd3, 0xcc, 0x3b, 0xfd,
	0x13, 0xcc, 0xc8, 0x26, 0xac, 0x66, 0x5c, 0xc8, 0xa3, 0xcc, 0x2a, 0x92, 0x7f, 0x73, 0x3f, 0x4f,
	0xa0, 0x3e, 0x54, 0xf8, 0xe3, 0x0c, 0x7a, 0x29, 0x7b, 0x62, 0x88, 0x3d, 0xdc, 0xf4, 0xe6, 0x3d,
	0xef, 0x90, 0x89, 0x1d, 0xf0, 0x43, 0xcb, 0x2c, 0x85, 0xa1, 0xcc, 0x67, 0xba, 0xf8, 0x9b, 0x4a,
	0x6f, 0xfe, 0x33, 0x4a, 0x78, 0xe8, 0xb3, 0xae, 0x25, 0xdb, 0x5f, 0x7a, 0xb4, 0x35, 0xb2, 0x82,
	0xe3, 0xc9, 0x80, 0x2a, 0xe9, 0x16, 0xc7, 0x7c, 0xdd, 0xf2, 0xc4, 0xaf, 0x5b, 0x21, 0x6b, 0xb7,
	0xd8, 0x49, 0xb7, 0x98, 0x2c, 0xe3, 0xc1, 0xa0, 0xc2, 0x96, 0x77, 0xfe, 0x1b, 0x00, 0x00, 0xff,
	0xff, 0x1d, 0xfe, 0x3f, 0x90, 0xee, 0x2e, 0x00, 0x00,
2952 2953 2954 2955 2956 2957 2958 2959 2960 2961
}

// Reference imports to suppress errors if they are not otherwise used.
var _ context.Context
var _ grpc.ClientConn

// This is a compile-time assertion to ensure that this generated file
// is compatible with the grpc package it is being compiled against.
const _ = grpc.SupportPackageIsVersion4

2962
// QueryCoordClient is the client API for QueryCoord service.
2963 2964
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
2965
type QueryCoordClient interface {
G
godchen 已提交
2966 2967 2968 2969 2970 2971 2972
	GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error)
	GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
	GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
	ShowCollections(ctx context.Context, in *ShowCollectionsRequest, opts ...grpc.CallOption) (*ShowCollectionsResponse, error)
	ShowPartitions(ctx context.Context, in *ShowPartitionsRequest, opts ...grpc.CallOption) (*ShowPartitionsResponse, error)
	LoadPartitions(ctx context.Context, in *LoadPartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
	ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
2973 2974
	LoadCollection(ctx context.Context, in *LoadCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
	ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
G
godchen 已提交
2975 2976
	GetPartitionStates(ctx context.Context, in *GetPartitionStatesRequest, opts ...grpc.CallOption) (*GetPartitionStatesResponse, error)
	GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error)
B
bigsheeper 已提交
2977
	LoadBalance(ctx context.Context, in *LoadBalanceRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
2978 2979
	// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
	GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
2980
	// https://wiki.lfaidata.foundation/display/MIL/MEP+23+--+Multiple+memory+replication+design
X
XuanYang-cn 已提交
2981
	GetReplicas(ctx context.Context, in *milvuspb.GetReplicasRequest, opts ...grpc.CallOption) (*milvuspb.GetReplicasResponse, error)
2982
	GetShardLeaders(ctx context.Context, in *GetShardLeadersRequest, opts ...grpc.CallOption) (*GetShardLeadersResponse, error)
2983 2984
}

2985
type queryCoordClient struct {
2986 2987 2988
	cc *grpc.ClientConn
}

2989 2990
func NewQueryCoordClient(cc *grpc.ClientConn) QueryCoordClient {
	return &queryCoordClient{cc}
2991 2992
}

2993
func (c *queryCoordClient) GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error) {
G
godchen 已提交
2994
	out := new(internalpb.ComponentStates)
2995
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetComponentStates", in, out, opts...)
2996 2997 2998 2999 3000 3001
	if err != nil {
		return nil, err
	}
	return out, nil
}

3002
func (c *queryCoordClient) GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
G
godchen 已提交
3003
	out := new(milvuspb.StringResponse)
3004
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetTimeTickChannel", in, out, opts...)
3005 3006 3007 3008 3009 3010
	if err != nil {
		return nil, err
	}
	return out, nil
}

3011
func (c *queryCoordClient) GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
G
godchen 已提交
3012
	out := new(milvuspb.StringResponse)
3013
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetStatisticsChannel", in, out, opts...)
3014 3015 3016 3017 3018 3019
	if err != nil {
		return nil, err
	}
	return out, nil
}

3020
func (c *queryCoordClient) ShowCollections(ctx context.Context, in *ShowCollectionsRequest, opts ...grpc.CallOption) (*ShowCollectionsResponse, error) {
G
godchen 已提交
3021
	out := new(ShowCollectionsResponse)
3022
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ShowCollections", in, out, opts...)
3023 3024 3025 3026 3027 3028
	if err != nil {
		return nil, err
	}
	return out, nil
}

3029
func (c *queryCoordClient) ShowPartitions(ctx context.Context, in *ShowPartitionsRequest, opts ...grpc.CallOption) (*ShowPartitionsResponse, error) {
G
godchen 已提交
3030
	out := new(ShowPartitionsResponse)
3031
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ShowPartitions", in, out, opts...)
3032 3033 3034 3035 3036 3037
	if err != nil {
		return nil, err
	}
	return out, nil
}

3038
func (c *queryCoordClient) LoadPartitions(ctx context.Context, in *LoadPartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
3039
	out := new(commonpb.Status)
3040
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/LoadPartitions", in, out, opts...)
3041 3042 3043 3044 3045 3046
	if err != nil {
		return nil, err
	}
	return out, nil
}

3047
func (c *queryCoordClient) ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
G
godchen 已提交
3048
	out := new(commonpb.Status)
3049
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ReleasePartitions", in, out, opts...)
3050 3051 3052 3053 3054 3055
	if err != nil {
		return nil, err
	}
	return out, nil
}

3056
func (c *queryCoordClient) LoadCollection(ctx context.Context, in *LoadCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
G
godchen 已提交
3057
	out := new(commonpb.Status)
3058
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/LoadCollection", in, out, opts...)
3059 3060 3061 3062 3063 3064
	if err != nil {
		return nil, err
	}
	return out, nil
}

3065
func (c *queryCoordClient) ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
G
godchen 已提交
3066
	out := new(commonpb.Status)
3067
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ReleaseCollection", in, out, opts...)
3068 3069 3070 3071 3072 3073
	if err != nil {
		return nil, err
	}
	return out, nil
}

3074
func (c *queryCoordClient) GetPartitionStates(ctx context.Context, in *GetPartitionStatesRequest, opts ...grpc.CallOption) (*GetPartitionStatesResponse, error) {
G
godchen 已提交
3075
	out := new(GetPartitionStatesResponse)
3076
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetPartitionStates", in, out, opts...)
3077 3078 3079 3080 3081 3082
	if err != nil {
		return nil, err
	}
	return out, nil
}

3083
func (c *queryCoordClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error) {
G
godchen 已提交
3084
	out := new(GetSegmentInfoResponse)
3085
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetSegmentInfo", in, out, opts...)
B
bigsheeper 已提交
3086 3087 3088 3089 3090 3091
	if err != nil {
		return nil, err
	}
	return out, nil
}

B
bigsheeper 已提交
3092 3093 3094 3095 3096 3097 3098 3099 3100
func (c *queryCoordClient) LoadBalance(ctx context.Context, in *LoadBalanceRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/LoadBalance", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3101 3102 3103 3104 3105 3106 3107 3108 3109
func (c *queryCoordClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
	out := new(milvuspb.GetMetricsResponse)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetMetrics", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

X
XuanYang-cn 已提交
3110 3111
func (c *queryCoordClient) GetReplicas(ctx context.Context, in *milvuspb.GetReplicasRequest, opts ...grpc.CallOption) (*milvuspb.GetReplicasResponse, error) {
	out := new(milvuspb.GetReplicasResponse)
3112 3113 3114 3115 3116 3117 3118
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetReplicas", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3119 3120 3121 3122 3123 3124 3125 3126 3127
func (c *queryCoordClient) GetShardLeaders(ctx context.Context, in *GetShardLeadersRequest, opts ...grpc.CallOption) (*GetShardLeadersResponse, error) {
	out := new(GetShardLeadersResponse)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetShardLeaders", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3128 3129
// QueryCoordServer is the server API for QueryCoord service.
type QueryCoordServer interface {
G
godchen 已提交
3130 3131 3132 3133 3134 3135 3136
	GetComponentStates(context.Context, *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error)
	GetTimeTickChannel(context.Context, *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error)
	GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
	ShowCollections(context.Context, *ShowCollectionsRequest) (*ShowCollectionsResponse, error)
	ShowPartitions(context.Context, *ShowPartitionsRequest) (*ShowPartitionsResponse, error)
	LoadPartitions(context.Context, *LoadPartitionsRequest) (*commonpb.Status, error)
	ReleasePartitions(context.Context, *ReleasePartitionsRequest) (*commonpb.Status, error)
3137 3138
	LoadCollection(context.Context, *LoadCollectionRequest) (*commonpb.Status, error)
	ReleaseCollection(context.Context, *ReleaseCollectionRequest) (*commonpb.Status, error)
G
godchen 已提交
3139 3140
	GetPartitionStates(context.Context, *GetPartitionStatesRequest) (*GetPartitionStatesResponse, error)
	GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
B
bigsheeper 已提交
3141
	LoadBalance(context.Context, *LoadBalanceRequest) (*commonpb.Status, error)
3142 3143
	// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
	GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
3144
	// https://wiki.lfaidata.foundation/display/MIL/MEP+23+--+Multiple+memory+replication+design
X
XuanYang-cn 已提交
3145
	GetReplicas(context.Context, *milvuspb.GetReplicasRequest) (*milvuspb.GetReplicasResponse, error)
3146
	GetShardLeaders(context.Context, *GetShardLeadersRequest) (*GetShardLeadersResponse, error)
3147 3148
}

3149 3150
// UnimplementedQueryCoordServer can be embedded to have forward compatible implementations.
type UnimplementedQueryCoordServer struct {
3151 3152
}

3153
func (*UnimplementedQueryCoordServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
G
godchen 已提交
3154 3155
	return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
}
3156
func (*UnimplementedQueryCoordServer) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
G
godchen 已提交
3157 3158
	return nil, status.Errorf(codes.Unimplemented, "method GetTimeTickChannel not implemented")
}
3159
func (*UnimplementedQueryCoordServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
G
godchen 已提交
3160 3161
	return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
}
3162
func (*UnimplementedQueryCoordServer) ShowCollections(ctx context.Context, req *ShowCollectionsRequest) (*ShowCollectionsResponse, error) {
3163 3164
	return nil, status.Errorf(codes.Unimplemented, "method ShowCollections not implemented")
}
3165
func (*UnimplementedQueryCoordServer) ShowPartitions(ctx context.Context, req *ShowPartitionsRequest) (*ShowPartitionsResponse, error) {
3166 3167
	return nil, status.Errorf(codes.Unimplemented, "method ShowPartitions not implemented")
}
3168
func (*UnimplementedQueryCoordServer) LoadPartitions(ctx context.Context, req *LoadPartitionsRequest) (*commonpb.Status, error) {
3169 3170
	return nil, status.Errorf(codes.Unimplemented, "method LoadPartitions not implemented")
}
3171
func (*UnimplementedQueryCoordServer) ReleasePartitions(ctx context.Context, req *ReleasePartitionsRequest) (*commonpb.Status, error) {
3172 3173
	return nil, status.Errorf(codes.Unimplemented, "method ReleasePartitions not implemented")
}
3174
func (*UnimplementedQueryCoordServer) LoadCollection(ctx context.Context, req *LoadCollectionRequest) (*commonpb.Status, error) {
3175 3176
	return nil, status.Errorf(codes.Unimplemented, "method LoadCollection not implemented")
}
3177
func (*UnimplementedQueryCoordServer) ReleaseCollection(ctx context.Context, req *ReleaseCollectionRequest) (*commonpb.Status, error) {
3178 3179
	return nil, status.Errorf(codes.Unimplemented, "method ReleaseCollection not implemented")
}
3180
func (*UnimplementedQueryCoordServer) GetPartitionStates(ctx context.Context, req *GetPartitionStatesRequest) (*GetPartitionStatesResponse, error) {
3181 3182
	return nil, status.Errorf(codes.Unimplemented, "method GetPartitionStates not implemented")
}
3183
func (*UnimplementedQueryCoordServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
B
bigsheeper 已提交
3184 3185
	return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
}
B
bigsheeper 已提交
3186 3187 3188
func (*UnimplementedQueryCoordServer) LoadBalance(ctx context.Context, req *LoadBalanceRequest) (*commonpb.Status, error) {
	return nil, status.Errorf(codes.Unimplemented, "method LoadBalance not implemented")
}
3189 3190 3191
func (*UnimplementedQueryCoordServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
}
X
XuanYang-cn 已提交
3192
func (*UnimplementedQueryCoordServer) GetReplicas(ctx context.Context, req *milvuspb.GetReplicasRequest) (*milvuspb.GetReplicasResponse, error) {
3193 3194
	return nil, status.Errorf(codes.Unimplemented, "method GetReplicas not implemented")
}
3195 3196 3197
func (*UnimplementedQueryCoordServer) GetShardLeaders(ctx context.Context, req *GetShardLeadersRequest) (*GetShardLeadersResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetShardLeaders not implemented")
}
3198

3199 3200
func RegisterQueryCoordServer(s *grpc.Server, srv QueryCoordServer) {
	s.RegisterService(&_QueryCoord_serviceDesc, srv)
3201 3202
}

3203
func _QueryCoord_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3204
	in := new(internalpb.GetComponentStatesRequest)
3205 3206 3207 3208
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3209
		return srv.(QueryCoordServer).GetComponentStates(ctx, in)
3210 3211 3212
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3213
		FullMethod: "/milvus.proto.query.QueryCoord/GetComponentStates",
3214 3215
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3216
		return srv.(QueryCoordServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
3217 3218 3219 3220
	}
	return interceptor(ctx, in, info, handler)
}

3221
func _QueryCoord_GetTimeTickChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3222
	in := new(internalpb.GetTimeTickChannelRequest)
3223 3224 3225 3226
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3227
		return srv.(QueryCoordServer).GetTimeTickChannel(ctx, in)
3228 3229 3230
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3231
		FullMethod: "/milvus.proto.query.QueryCoord/GetTimeTickChannel",
3232 3233
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3234
		return srv.(QueryCoordServer).GetTimeTickChannel(ctx, req.(*internalpb.GetTimeTickChannelRequest))
3235 3236 3237 3238
	}
	return interceptor(ctx, in, info, handler)
}

3239
func _QueryCoord_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3240
	in := new(internalpb.GetStatisticsChannelRequest)
3241 3242 3243 3244
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3245
		return srv.(QueryCoordServer).GetStatisticsChannel(ctx, in)
3246 3247 3248
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3249
		FullMethod: "/milvus.proto.query.QueryCoord/GetStatisticsChannel",
3250 3251
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3252
		return srv.(QueryCoordServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
3253 3254 3255 3256
	}
	return interceptor(ctx, in, info, handler)
}

3257
func _QueryCoord_ShowCollections_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3258
	in := new(ShowCollectionsRequest)
3259 3260 3261 3262
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3263
		return srv.(QueryCoordServer).ShowCollections(ctx, in)
3264 3265 3266
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3267
		FullMethod: "/milvus.proto.query.QueryCoord/ShowCollections",
3268 3269
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3270
		return srv.(QueryCoordServer).ShowCollections(ctx, req.(*ShowCollectionsRequest))
3271 3272 3273 3274
	}
	return interceptor(ctx, in, info, handler)
}

3275
func _QueryCoord_ShowPartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3276
	in := new(ShowPartitionsRequest)
3277 3278 3279 3280
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3281
		return srv.(QueryCoordServer).ShowPartitions(ctx, in)
3282 3283 3284
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3285
		FullMethod: "/milvus.proto.query.QueryCoord/ShowPartitions",
3286 3287
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3288
		return srv.(QueryCoordServer).ShowPartitions(ctx, req.(*ShowPartitionsRequest))
3289 3290 3291 3292
	}
	return interceptor(ctx, in, info, handler)
}

3293
func _QueryCoord_LoadPartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3294
	in := new(LoadPartitionsRequest)
3295 3296 3297 3298
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3299
		return srv.(QueryCoordServer).LoadPartitions(ctx, in)
3300 3301 3302
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3303
		FullMethod: "/milvus.proto.query.QueryCoord/LoadPartitions",
3304 3305
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3306
		return srv.(QueryCoordServer).LoadPartitions(ctx, req.(*LoadPartitionsRequest))
3307 3308 3309 3310
	}
	return interceptor(ctx, in, info, handler)
}

3311
func _QueryCoord_ReleasePartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3312
	in := new(ReleasePartitionsRequest)
3313 3314 3315 3316
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3317
		return srv.(QueryCoordServer).ReleasePartitions(ctx, in)
3318 3319 3320
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3321
		FullMethod: "/milvus.proto.query.QueryCoord/ReleasePartitions",
3322 3323
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3324
		return srv.(QueryCoordServer).ReleasePartitions(ctx, req.(*ReleasePartitionsRequest))
3325 3326 3327 3328
	}
	return interceptor(ctx, in, info, handler)
}

3329
func _QueryCoord_LoadCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3330
	in := new(LoadCollectionRequest)
3331 3332 3333 3334
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3335
		return srv.(QueryCoordServer).LoadCollection(ctx, in)
3336 3337 3338
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3339
		FullMethod: "/milvus.proto.query.QueryCoord/LoadCollection",
3340 3341
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3342
		return srv.(QueryCoordServer).LoadCollection(ctx, req.(*LoadCollectionRequest))
3343 3344 3345 3346
	}
	return interceptor(ctx, in, info, handler)
}

3347
func _QueryCoord_ReleaseCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3348
	in := new(ReleaseCollectionRequest)
3349 3350 3351 3352
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3353
		return srv.(QueryCoordServer).ReleaseCollection(ctx, in)
3354 3355 3356
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3357
		FullMethod: "/milvus.proto.query.QueryCoord/ReleaseCollection",
3358 3359
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3360
		return srv.(QueryCoordServer).ReleaseCollection(ctx, req.(*ReleaseCollectionRequest))
3361 3362 3363 3364
	}
	return interceptor(ctx, in, info, handler)
}

3365
func _QueryCoord_GetPartitionStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3366
	in := new(GetPartitionStatesRequest)
3367 3368 3369 3370
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3371
		return srv.(QueryCoordServer).GetPartitionStates(ctx, in)
3372 3373 3374
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3375
		FullMethod: "/milvus.proto.query.QueryCoord/GetPartitionStates",
3376 3377
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3378
		return srv.(QueryCoordServer).GetPartitionStates(ctx, req.(*GetPartitionStatesRequest))
3379 3380 3381 3382
	}
	return interceptor(ctx, in, info, handler)
}

3383
func _QueryCoord_GetSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3384
	in := new(GetSegmentInfoRequest)
B
bigsheeper 已提交
3385 3386 3387 3388
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
3389
		return srv.(QueryCoordServer).GetSegmentInfo(ctx, in)
B
bigsheeper 已提交
3390 3391 3392
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
3393
		FullMethod: "/milvus.proto.query.QueryCoord/GetSegmentInfo",
B
bigsheeper 已提交
3394 3395
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
3396
		return srv.(QueryCoordServer).GetSegmentInfo(ctx, req.(*GetSegmentInfoRequest))
B
bigsheeper 已提交
3397 3398 3399 3400
	}
	return interceptor(ctx, in, info, handler)
}

B
bigsheeper 已提交
3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418
func _QueryCoord_LoadBalance_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(LoadBalanceRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryCoordServer).LoadBalance(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryCoord/LoadBalance",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryCoordServer).LoadBalance(ctx, req.(*LoadBalanceRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436
func _QueryCoord_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(milvuspb.GetMetricsRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryCoordServer).GetMetrics(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryCoord/GetMetrics",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryCoordServer).GetMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3437
func _QueryCoord_GetReplicas_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
X
XuanYang-cn 已提交
3438
	in := new(milvuspb.GetReplicasRequest)
3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryCoordServer).GetReplicas(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryCoord/GetReplicas",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
X
XuanYang-cn 已提交
3450
		return srv.(QueryCoordServer).GetReplicas(ctx, req.(*milvuspb.GetReplicasRequest))
3451 3452 3453 3454
	}
	return interceptor(ctx, in, info, handler)
}

3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472
func _QueryCoord_GetShardLeaders_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(GetShardLeadersRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryCoordServer).GetShardLeaders(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryCoord/GetShardLeaders",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryCoordServer).GetShardLeaders(ctx, req.(*GetShardLeadersRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3473 3474 3475
var _QueryCoord_serviceDesc = grpc.ServiceDesc{
	ServiceName: "milvus.proto.query.QueryCoord",
	HandlerType: (*QueryCoordServer)(nil),
3476
	Methods: []grpc.MethodDesc{
G
godchen 已提交
3477 3478
		{
			MethodName: "GetComponentStates",
3479
			Handler:    _QueryCoord_GetComponentStates_Handler,
G
godchen 已提交
3480 3481 3482
		},
		{
			MethodName: "GetTimeTickChannel",
3483
			Handler:    _QueryCoord_GetTimeTickChannel_Handler,
G
godchen 已提交
3484 3485 3486
		},
		{
			MethodName: "GetStatisticsChannel",
3487
			Handler:    _QueryCoord_GetStatisticsChannel_Handler,
G
godchen 已提交
3488
		},
3489 3490
		{
			MethodName: "ShowCollections",
3491
			Handler:    _QueryCoord_ShowCollections_Handler,
3492
		},
3493 3494
		{
			MethodName: "ShowPartitions",
3495
			Handler:    _QueryCoord_ShowPartitions_Handler,
3496 3497 3498
		},
		{
			MethodName: "LoadPartitions",
3499
			Handler:    _QueryCoord_LoadPartitions_Handler,
3500 3501 3502
		},
		{
			MethodName: "ReleasePartitions",
3503
			Handler:    _QueryCoord_ReleasePartitions_Handler,
3504
		},
3505 3506
		{
			MethodName: "LoadCollection",
3507
			Handler:    _QueryCoord_LoadCollection_Handler,
3508 3509 3510
		},
		{
			MethodName: "ReleaseCollection",
3511
			Handler:    _QueryCoord_ReleaseCollection_Handler,
3512 3513 3514
		},
		{
			MethodName: "GetPartitionStates",
3515
			Handler:    _QueryCoord_GetPartitionStates_Handler,
3516
		},
B
bigsheeper 已提交
3517 3518
		{
			MethodName: "GetSegmentInfo",
3519
			Handler:    _QueryCoord_GetSegmentInfo_Handler,
B
bigsheeper 已提交
3520
		},
B
bigsheeper 已提交
3521 3522 3523 3524
		{
			MethodName: "LoadBalance",
			Handler:    _QueryCoord_LoadBalance_Handler,
		},
3525 3526 3527 3528
		{
			MethodName: "GetMetrics",
			Handler:    _QueryCoord_GetMetrics_Handler,
		},
3529 3530 3531 3532
		{
			MethodName: "GetReplicas",
			Handler:    _QueryCoord_GetReplicas_Handler,
		},
3533 3534 3535 3536
		{
			MethodName: "GetShardLeaders",
			Handler:    _QueryCoord_GetShardLeaders_Handler,
		},
3537 3538
	},
	Streams:  []grpc.StreamDesc{},
3539
	Metadata: "query_coord.proto",
3540 3541 3542 3543 3544 3545
}

// QueryNodeClient is the client API for QueryNode service.
//
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
type QueryNodeClient interface {
G
godchen 已提交
3546 3547 3548
	GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error)
	GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
	GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
3549
	WatchDmChannels(ctx context.Context, in *WatchDmChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
3550
	WatchDeltaChannels(ctx context.Context, in *WatchDeltaChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
G
godchen 已提交
3551
	LoadSegments(ctx context.Context, in *LoadSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
B
bigsheeper 已提交
3552
	ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
G
godchen 已提交
3553 3554 3555
	ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
	ReleaseSegments(ctx context.Context, in *ReleaseSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
	GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error)
3556
	SyncReplicaSegments(ctx context.Context, in *SyncReplicaSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
3557 3558
	Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*internalpb.SearchResults, error)
	Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*internalpb.RetrieveResults, error)
3559 3560
	// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
	GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
3561 3562 3563 3564 3565 3566 3567 3568 3569 3570
}

type queryNodeClient struct {
	cc *grpc.ClientConn
}

func NewQueryNodeClient(cc *grpc.ClientConn) QueryNodeClient {
	return &queryNodeClient{cc}
}

G
godchen 已提交
3571 3572 3573
func (c *queryNodeClient) GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error) {
	out := new(internalpb.ComponentStates)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetComponentStates", in, out, opts...)
3574 3575 3576 3577 3578 3579
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3580
func (c *queryNodeClient) GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
X
xige-16 已提交
3581
	out := new(milvuspb.StringResponse)
G
godchen 已提交
3582
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetTimeTickChannel", in, out, opts...)
3583 3584 3585 3586 3587 3588
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3589 3590 3591
func (c *queryNodeClient) GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
	out := new(milvuspb.StringResponse)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetStatisticsChannel", in, out, opts...)
3592 3593 3594 3595 3596 3597
	if err != nil {
		return nil, err
	}
	return out, nil
}

3598 3599 3600 3601 3602 3603 3604 3605 3606
func (c *queryNodeClient) WatchDmChannels(ctx context.Context, in *WatchDmChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/WatchDmChannels", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3607 3608 3609 3610 3611 3612 3613 3614 3615
func (c *queryNodeClient) WatchDeltaChannels(ctx context.Context, in *WatchDeltaChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/WatchDeltaChannels", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3616
func (c *queryNodeClient) LoadSegments(ctx context.Context, in *LoadSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
3617 3618 3619 3620 3621 3622 3623 3624
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/LoadSegments", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

B
bigsheeper 已提交
3625 3626 3627 3628 3629 3630 3631 3632 3633
func (c *queryNodeClient) ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/ReleaseCollection", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3634
func (c *queryNodeClient) ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
B
bigsheeper 已提交
3635 3636 3637 3638 3639 3640 3641 3642
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/ReleasePartitions", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3643
func (c *queryNodeClient) ReleaseSegments(ctx context.Context, in *ReleaseSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
3644 3645 3646 3647 3648 3649 3650 3651
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/ReleaseSegments", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

G
godchen 已提交
3652 3653
func (c *queryNodeClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error) {
	out := new(GetSegmentInfoResponse)
B
bigsheeper 已提交
3654 3655 3656 3657 3658 3659 3660
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetSegmentInfo", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3661 3662 3663 3664 3665 3666 3667 3668 3669
func (c *queryNodeClient) SyncReplicaSegments(ctx context.Context, in *SyncReplicaSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
	out := new(commonpb.Status)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/SyncReplicaSegments", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3670 3671
func (c *queryNodeClient) Search(ctx context.Context, in *SearchRequest, opts ...grpc.CallOption) (*internalpb.SearchResults, error) {
	out := new(internalpb.SearchResults)
3672 3673 3674 3675 3676 3677 3678
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/Search", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3679 3680
func (c *queryNodeClient) Query(ctx context.Context, in *QueryRequest, opts ...grpc.CallOption) (*internalpb.RetrieveResults, error) {
	out := new(internalpb.RetrieveResults)
3681 3682 3683 3684 3685 3686 3687
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/Query", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3688 3689 3690 3691 3692 3693 3694 3695 3696
func (c *queryNodeClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
	out := new(milvuspb.GetMetricsResponse)
	err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetMetrics", in, out, opts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

3697 3698
// QueryNodeServer is the server API for QueryNode service.
type QueryNodeServer interface {
G
godchen 已提交
3699 3700 3701
	GetComponentStates(context.Context, *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error)
	GetTimeTickChannel(context.Context, *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error)
	GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
3702
	WatchDmChannels(context.Context, *WatchDmChannelsRequest) (*commonpb.Status, error)
3703
	WatchDeltaChannels(context.Context, *WatchDeltaChannelsRequest) (*commonpb.Status, error)
G
godchen 已提交
3704
	LoadSegments(context.Context, *LoadSegmentsRequest) (*commonpb.Status, error)
B
bigsheeper 已提交
3705
	ReleaseCollection(context.Context, *ReleaseCollectionRequest) (*commonpb.Status, error)
G
godchen 已提交
3706 3707 3708
	ReleasePartitions(context.Context, *ReleasePartitionsRequest) (*commonpb.Status, error)
	ReleaseSegments(context.Context, *ReleaseSegmentsRequest) (*commonpb.Status, error)
	GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
3709
	SyncReplicaSegments(context.Context, *SyncReplicaSegmentsRequest) (*commonpb.Status, error)
3710 3711
	Search(context.Context, *SearchRequest) (*internalpb.SearchResults, error)
	Query(context.Context, *QueryRequest) (*internalpb.RetrieveResults, error)
3712 3713
	// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
	GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
3714 3715 3716 3717 3718 3719
}

// UnimplementedQueryNodeServer can be embedded to have forward compatible implementations.
type UnimplementedQueryNodeServer struct {
}

G
godchen 已提交
3720 3721
func (*UnimplementedQueryNodeServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
3722
}
G
godchen 已提交
3723 3724
func (*UnimplementedQueryNodeServer) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetTimeTickChannel not implemented")
3725
}
G
godchen 已提交
3726 3727
func (*UnimplementedQueryNodeServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
3728
}
3729 3730 3731
func (*UnimplementedQueryNodeServer) WatchDmChannels(ctx context.Context, req *WatchDmChannelsRequest) (*commonpb.Status, error) {
	return nil, status.Errorf(codes.Unimplemented, "method WatchDmChannels not implemented")
}
3732 3733 3734
func (*UnimplementedQueryNodeServer) WatchDeltaChannels(ctx context.Context, req *WatchDeltaChannelsRequest) (*commonpb.Status, error) {
	return nil, status.Errorf(codes.Unimplemented, "method WatchDeltaChannels not implemented")
}
G
godchen 已提交
3735
func (*UnimplementedQueryNodeServer) LoadSegments(ctx context.Context, req *LoadSegmentsRequest) (*commonpb.Status, error) {
3736 3737
	return nil, status.Errorf(codes.Unimplemented, "method LoadSegments not implemented")
}
B
bigsheeper 已提交
3738 3739 3740
func (*UnimplementedQueryNodeServer) ReleaseCollection(ctx context.Context, req *ReleaseCollectionRequest) (*commonpb.Status, error) {
	return nil, status.Errorf(codes.Unimplemented, "method ReleaseCollection not implemented")
}
G
godchen 已提交
3741
func (*UnimplementedQueryNodeServer) ReleasePartitions(ctx context.Context, req *ReleasePartitionsRequest) (*commonpb.Status, error) {
B
bigsheeper 已提交
3742 3743
	return nil, status.Errorf(codes.Unimplemented, "method ReleasePartitions not implemented")
}
G
godchen 已提交
3744
func (*UnimplementedQueryNodeServer) ReleaseSegments(ctx context.Context, req *ReleaseSegmentsRequest) (*commonpb.Status, error) {
3745 3746
	return nil, status.Errorf(codes.Unimplemented, "method ReleaseSegments not implemented")
}
G
godchen 已提交
3747
func (*UnimplementedQueryNodeServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
B
bigsheeper 已提交
3748 3749
	return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
}
3750 3751 3752
func (*UnimplementedQueryNodeServer) SyncReplicaSegments(ctx context.Context, req *SyncReplicaSegmentsRequest) (*commonpb.Status, error) {
	return nil, status.Errorf(codes.Unimplemented, "method SyncReplicaSegments not implemented")
}
3753
func (*UnimplementedQueryNodeServer) Search(ctx context.Context, req *SearchRequest) (*internalpb.SearchResults, error) {
3754 3755
	return nil, status.Errorf(codes.Unimplemented, "method Search not implemented")
}
3756
func (*UnimplementedQueryNodeServer) Query(ctx context.Context, req *QueryRequest) (*internalpb.RetrieveResults, error) {
3757 3758
	return nil, status.Errorf(codes.Unimplemented, "method Query not implemented")
}
3759 3760 3761
func (*UnimplementedQueryNodeServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
}
3762 3763 3764 3765 3766

func RegisterQueryNodeServer(s *grpc.Server, srv QueryNodeServer) {
	s.RegisterService(&_QueryNode_serviceDesc, srv)
}

G
godchen 已提交
3767 3768
func _QueryNode_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(internalpb.GetComponentStatesRequest)
3769 3770 3771 3772
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
G
godchen 已提交
3773
		return srv.(QueryNodeServer).GetComponentStates(ctx, in)
3774 3775 3776
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
G
godchen 已提交
3777
		FullMethod: "/milvus.proto.query.QueryNode/GetComponentStates",
3778 3779
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3780
		return srv.(QueryNodeServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
3781 3782 3783 3784
	}
	return interceptor(ctx, in, info, handler)
}

G
godchen 已提交
3785 3786
func _QueryNode_GetTimeTickChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(internalpb.GetTimeTickChannelRequest)
3787 3788 3789 3790
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
G
godchen 已提交
3791
		return srv.(QueryNodeServer).GetTimeTickChannel(ctx, in)
3792 3793 3794
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
G
godchen 已提交
3795
		FullMethod: "/milvus.proto.query.QueryNode/GetTimeTickChannel",
3796 3797
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3798
		return srv.(QueryNodeServer).GetTimeTickChannel(ctx, req.(*internalpb.GetTimeTickChannelRequest))
3799 3800 3801 3802
	}
	return interceptor(ctx, in, info, handler)
}

G
godchen 已提交
3803 3804
func _QueryNode_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(internalpb.GetStatisticsChannelRequest)
3805 3806 3807 3808
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
G
godchen 已提交
3809
		return srv.(QueryNodeServer).GetStatisticsChannel(ctx, in)
3810 3811 3812
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
G
godchen 已提交
3813
		FullMethod: "/milvus.proto.query.QueryNode/GetStatisticsChannel",
3814 3815
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3816
		return srv.(QueryNodeServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
3817 3818 3819 3820
	}
	return interceptor(ctx, in, info, handler)
}

3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838
func _QueryNode_WatchDmChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(WatchDmChannelsRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).WatchDmChannels(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/WatchDmChannels",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).WatchDmChannels(ctx, req.(*WatchDmChannelsRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856
func _QueryNode_WatchDeltaChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(WatchDeltaChannelsRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).WatchDeltaChannels(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/WatchDeltaChannels",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).WatchDeltaChannels(ctx, req.(*WatchDeltaChannelsRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3857
func _QueryNode_LoadSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3858
	in := new(LoadSegmentsRequest)
3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).LoadSegments(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/LoadSegments",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3870
		return srv.(QueryNodeServer).LoadSegments(ctx, req.(*LoadSegmentsRequest))
3871 3872 3873 3874
	}
	return interceptor(ctx, in, info, handler)
}

B
bigsheeper 已提交
3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893
func _QueryNode_ReleaseCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(ReleaseCollectionRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).ReleaseCollection(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/ReleaseCollection",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).ReleaseCollection(ctx, req.(*ReleaseCollectionRequest))
	}
	return interceptor(ctx, in, info, handler)
}

func _QueryNode_ReleasePartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3894
	in := new(ReleasePartitionsRequest)
B
bigsheeper 已提交
3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).ReleasePartitions(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/ReleasePartitions",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3906
		return srv.(QueryNodeServer).ReleasePartitions(ctx, req.(*ReleasePartitionsRequest))
B
bigsheeper 已提交
3907 3908 3909 3910
	}
	return interceptor(ctx, in, info, handler)
}

3911
func _QueryNode_ReleaseSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3912
	in := new(ReleaseSegmentsRequest)
3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).ReleaseSegments(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/ReleaseSegments",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3924
		return srv.(QueryNodeServer).ReleaseSegments(ctx, req.(*ReleaseSegmentsRequest))
3925 3926 3927 3928
	}
	return interceptor(ctx, in, info, handler)
}

B
bigsheeper 已提交
3929
func _QueryNode_GetSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
G
godchen 已提交
3930
	in := new(GetSegmentInfoRequest)
B
bigsheeper 已提交
3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).GetSegmentInfo(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/GetSegmentInfo",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
G
godchen 已提交
3942
		return srv.(QueryNodeServer).GetSegmentInfo(ctx, req.(*GetSegmentInfoRequest))
B
bigsheeper 已提交
3943 3944 3945 3946
	}
	return interceptor(ctx, in, info, handler)
}

3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964
func _QueryNode_SyncReplicaSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(SyncReplicaSegmentsRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).SyncReplicaSegments(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/SyncReplicaSegments",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).SyncReplicaSegments(ctx, req.(*SyncReplicaSegmentsRequest))
	}
	return interceptor(ctx, in, info, handler)
}

3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000
func _QueryNode_Search_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(SearchRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).Search(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/Search",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).Search(ctx, req.(*SearchRequest))
	}
	return interceptor(ctx, in, info, handler)
}

func _QueryNode_Query_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(QueryRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).Query(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/Query",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).Query(ctx, req.(*QueryRequest))
	}
	return interceptor(ctx, in, info, handler)
}

4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018
func _QueryNode_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(milvuspb.GetMetricsRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(QueryNodeServer).GetMetrics(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: "/milvus.proto.query.QueryNode/GetMetrics",
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(QueryNodeServer).GetMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
	}
	return interceptor(ctx, in, info, handler)
}

4019 4020 4021 4022
var _QueryNode_serviceDesc = grpc.ServiceDesc{
	ServiceName: "milvus.proto.query.QueryNode",
	HandlerType: (*QueryNodeServer)(nil),
	Methods: []grpc.MethodDesc{
4023
		{
G
godchen 已提交
4024 4025
			MethodName: "GetComponentStates",
			Handler:    _QueryNode_GetComponentStates_Handler,
4026 4027
		},
		{
G
godchen 已提交
4028 4029
			MethodName: "GetTimeTickChannel",
			Handler:    _QueryNode_GetTimeTickChannel_Handler,
4030 4031
		},
		{
G
godchen 已提交
4032 4033
			MethodName: "GetStatisticsChannel",
			Handler:    _QueryNode_GetStatisticsChannel_Handler,
4034
		},
4035 4036 4037 4038
		{
			MethodName: "WatchDmChannels",
			Handler:    _QueryNode_WatchDmChannels_Handler,
		},
4039 4040 4041 4042
		{
			MethodName: "WatchDeltaChannels",
			Handler:    _QueryNode_WatchDeltaChannels_Handler,
		},
4043 4044 4045 4046
		{
			MethodName: "LoadSegments",
			Handler:    _QueryNode_LoadSegments_Handler,
		},
B
bigsheeper 已提交
4047 4048 4049 4050 4051 4052 4053 4054
		{
			MethodName: "ReleaseCollection",
			Handler:    _QueryNode_ReleaseCollection_Handler,
		},
		{
			MethodName: "ReleasePartitions",
			Handler:    _QueryNode_ReleasePartitions_Handler,
		},
4055 4056 4057 4058
		{
			MethodName: "ReleaseSegments",
			Handler:    _QueryNode_ReleaseSegments_Handler,
		},
B
bigsheeper 已提交
4059 4060 4061 4062
		{
			MethodName: "GetSegmentInfo",
			Handler:    _QueryNode_GetSegmentInfo_Handler,
		},
4063 4064 4065 4066
		{
			MethodName: "SyncReplicaSegments",
			Handler:    _QueryNode_SyncReplicaSegments_Handler,
		},
4067 4068 4069 4070 4071 4072 4073 4074
		{
			MethodName: "Search",
			Handler:    _QueryNode_Search_Handler,
		},
		{
			MethodName: "Query",
			Handler:    _QueryNode_Query_Handler,
		},
4075 4076 4077 4078
		{
			MethodName: "GetMetrics",
			Handler:    _QueryNode_GetMetrics_Handler,
		},
4079 4080
	},
	Streams:  []grpc.StreamDesc{},
4081
	Metadata: "query_coord.proto",
4082
}