mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-04 04:49:08 +08:00
340f92ab16
Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
3144 lines
121 KiB
Go
3144 lines
121 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: query_coord.proto
|
|
|
|
package querypb
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
commonpb "github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
datapb "github.com/milvus-io/milvus/internal/proto/datapb"
|
|
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"
|
|
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
|
|
|
|
type PartitionState int32
|
|
|
|
const (
|
|
PartitionState_NotExist PartitionState = 0
|
|
PartitionState_NotPresent PartitionState = 1
|
|
PartitionState_OnDisk PartitionState = 2
|
|
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",
|
|
2: "OnDisk",
|
|
3: "PartialInMemory",
|
|
4: "InMemory",
|
|
5: "PartialInGPU",
|
|
6: "InGPU",
|
|
}
|
|
|
|
var PartitionState_value = map[string]int32{
|
|
"NotExist": 0,
|
|
"NotPresent": 1,
|
|
"OnDisk": 2,
|
|
"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) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{0}
|
|
}
|
|
|
|
type TriggerCondition int32
|
|
|
|
const (
|
|
TriggerCondition_handoff TriggerCondition = 0
|
|
TriggerCondition_loadBalance TriggerCondition = 1
|
|
TriggerCondition_grpcRequest TriggerCondition = 2
|
|
TriggerCondition_nodeDown TriggerCondition = 3
|
|
)
|
|
|
|
var TriggerCondition_name = map[int32]string{
|
|
0: "handoff",
|
|
1: "loadBalance",
|
|
2: "grpcRequest",
|
|
3: "nodeDown",
|
|
}
|
|
|
|
var TriggerCondition_value = map[string]int32{
|
|
"handoff": 0,
|
|
"loadBalance": 1,
|
|
"grpcRequest": 2,
|
|
"nodeDown": 3,
|
|
}
|
|
|
|
func (x TriggerCondition) String() string {
|
|
return proto.EnumName(TriggerCondition_name, int32(x))
|
|
}
|
|
|
|
func (TriggerCondition) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{1}
|
|
}
|
|
|
|
//----------------etcd-----------------
|
|
type SegmentState int32
|
|
|
|
const (
|
|
SegmentState_None SegmentState = 0
|
|
SegmentState_Growing SegmentState = 1
|
|
SegmentState_Frozen SegmentState = 2
|
|
SegmentState_sealing SegmentState = 3
|
|
SegmentState_sealed SegmentState = 4
|
|
)
|
|
|
|
var SegmentState_name = map[int32]string{
|
|
0: "None",
|
|
1: "Growing",
|
|
2: "Frozen",
|
|
3: "sealing",
|
|
4: "sealed",
|
|
}
|
|
|
|
var SegmentState_value = map[string]int32{
|
|
"None": 0,
|
|
"Growing": 1,
|
|
"Frozen": 2,
|
|
"sealing": 3,
|
|
"sealed": 4,
|
|
}
|
|
|
|
func (x SegmentState) String() string {
|
|
return proto.EnumName(SegmentState_name, int32(x))
|
|
}
|
|
|
|
func (SegmentState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{2}
|
|
}
|
|
|
|
type LoadType int32
|
|
|
|
const (
|
|
LoadType_LoadPartition LoadType = 0
|
|
LoadType_loadCollection LoadType = 1
|
|
)
|
|
|
|
var LoadType_name = map[int32]string{
|
|
0: "LoadPartition",
|
|
1: "loadCollection",
|
|
}
|
|
|
|
var LoadType_value = map[string]int32{
|
|
"LoadPartition": 0,
|
|
"loadCollection": 1,
|
|
}
|
|
|
|
func (x LoadType) String() string {
|
|
return proto.EnumName(LoadType_name, int32(x))
|
|
}
|
|
|
|
func (LoadType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{3}
|
|
}
|
|
|
|
//--------------------query coordinator proto------------------
|
|
type ShowCollectionsRequest struct {
|
|
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:"-"`
|
|
}
|
|
|
|
func (m *ShowCollectionsRequest) Reset() { *m = ShowCollectionsRequest{} }
|
|
func (m *ShowCollectionsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ShowCollectionsRequest) ProtoMessage() {}
|
|
func (*ShowCollectionsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{0}
|
|
}
|
|
|
|
func (m *ShowCollectionsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ShowCollectionsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ShowCollectionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ShowCollectionsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ShowCollectionsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ShowCollectionsRequest.Merge(m, src)
|
|
}
|
|
func (m *ShowCollectionsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ShowCollectionsRequest.Size(m)
|
|
}
|
|
func (m *ShowCollectionsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ShowCollectionsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ShowCollectionsRequest proto.InternalMessageInfo
|
|
|
|
func (m *ShowCollectionsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ShowCollectionsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowCollectionsRequest) GetCollectionIDs() []int64 {
|
|
if m != nil {
|
|
return m.CollectionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ShowCollectionsResponse struct {
|
|
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"`
|
|
InMemoryPercentages []int64 `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ShowCollectionsResponse) Reset() { *m = ShowCollectionsResponse{} }
|
|
func (m *ShowCollectionsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*ShowCollectionsResponse) ProtoMessage() {}
|
|
func (*ShowCollectionsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{1}
|
|
}
|
|
|
|
func (m *ShowCollectionsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ShowCollectionsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *ShowCollectionsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ShowCollectionsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ShowCollectionsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ShowCollectionsResponse.Merge(m, src)
|
|
}
|
|
func (m *ShowCollectionsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_ShowCollectionsResponse.Size(m)
|
|
}
|
|
func (m *ShowCollectionsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ShowCollectionsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ShowCollectionsResponse proto.InternalMessageInfo
|
|
|
|
func (m *ShowCollectionsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ShowCollectionsResponse) GetCollectionIDs() []int64 {
|
|
if m != nil {
|
|
return m.CollectionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ShowCollectionsResponse) GetInMemoryPercentages() []int64 {
|
|
if m != nil {
|
|
return m.InMemoryPercentages
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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"`
|
|
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:"-"`
|
|
}
|
|
|
|
func (m *ShowPartitionsRequest) Reset() { *m = ShowPartitionsRequest{} }
|
|
func (m *ShowPartitionsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ShowPartitionsRequest) ProtoMessage() {}
|
|
func (*ShowPartitionsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{2}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *ShowPartitionsRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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"`
|
|
InMemoryPercentages []int64 `protobuf:"varint,3,rep,packed,name=inMemory_percentages,json=inMemoryPercentages,proto3" json:"inMemory_percentages,omitempty"`
|
|
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) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{3}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *ShowPartitionsResponse) GetInMemoryPercentages() []int64 {
|
|
if m != nil {
|
|
return m.InMemoryPercentages
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LoadCollectionRequest 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"`
|
|
Schema *schemapb.CollectionSchema `protobuf:"bytes,4,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoadCollectionRequest) Reset() { *m = LoadCollectionRequest{} }
|
|
func (m *LoadCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LoadCollectionRequest) ProtoMessage() {}
|
|
func (*LoadCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{4}
|
|
}
|
|
|
|
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
|
|
|
|
func (m *LoadCollectionRequest) GetBase() *commonpb.MsgBase {
|
|
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
|
|
}
|
|
|
|
func (m *LoadCollectionRequest) GetSchema() *schemapb.CollectionSchema {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ReleaseCollectionRequest 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"`
|
|
NodeID int64 `protobuf:"varint,4,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReleaseCollectionRequest) Reset() { *m = ReleaseCollectionRequest{} }
|
|
func (m *ReleaseCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReleaseCollectionRequest) ProtoMessage() {}
|
|
func (*ReleaseCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{5}
|
|
}
|
|
|
|
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
|
|
|
|
func (m *ReleaseCollectionRequest) GetBase() *commonpb.MsgBase {
|
|
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
|
|
}
|
|
|
|
func (m *ReleaseCollectionRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) Reset() { *m = LoadPartitionsRequest{} }
|
|
func (m *LoadPartitionsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LoadPartitionsRequest) ProtoMessage() {}
|
|
func (*LoadPartitionsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{6}
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoadPartitionsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *LoadPartitionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoadPartitionsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoadPartitionsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoadPartitionsRequest.Merge(m, src)
|
|
}
|
|
func (m *LoadPartitionsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_LoadPartitionsRequest.Size(m)
|
|
}
|
|
func (m *LoadPartitionsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoadPartitionsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoadPartitionsRequest proto.InternalMessageInfo
|
|
|
|
func (m *LoadPartitionsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LoadPartitionsRequest) GetSchema() *schemapb.CollectionSchema {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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"`
|
|
NodeID int64 `protobuf:"varint,5,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) Reset() { *m = ReleasePartitionsRequest{} }
|
|
func (m *ReleasePartitionsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReleasePartitionsRequest) ProtoMessage() {}
|
|
func (*ReleasePartitionsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{7}
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ReleasePartitionsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ReleasePartitionsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ReleasePartitionsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
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)
|
|
}
|
|
|
|
var xxx_messageInfo_ReleasePartitionsRequest proto.InternalMessageInfo
|
|
|
|
func (m *ReleasePartitionsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ReleasePartitionsRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreateQueryChannelRequest struct {
|
|
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,2,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateQueryChannelRequest) Reset() { *m = CreateQueryChannelRequest{} }
|
|
func (m *CreateQueryChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateQueryChannelRequest) ProtoMessage() {}
|
|
func (*CreateQueryChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{8}
|
|
}
|
|
|
|
func (m *CreateQueryChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateQueryChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateQueryChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateQueryChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateQueryChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateQueryChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateQueryChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateQueryChannelRequest.Size(m)
|
|
}
|
|
func (m *CreateQueryChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateQueryChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateQueryChannelRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateQueryChannelRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateQueryChannelRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreateQueryChannelResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
RequestChannel string `protobuf:"bytes,2,opt,name=request_channel,json=requestChannel,proto3" json:"request_channel,omitempty"`
|
|
ResultChannel string `protobuf:"bytes,3,opt,name=result_channel,json=resultChannel,proto3" json:"result_channel,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateQueryChannelResponse) Reset() { *m = CreateQueryChannelResponse{} }
|
|
func (m *CreateQueryChannelResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateQueryChannelResponse) ProtoMessage() {}
|
|
func (*CreateQueryChannelResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{9}
|
|
}
|
|
|
|
func (m *CreateQueryChannelResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateQueryChannelResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateQueryChannelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateQueryChannelResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateQueryChannelResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateQueryChannelResponse.Merge(m, src)
|
|
}
|
|
func (m *CreateQueryChannelResponse) XXX_Size() int {
|
|
return xxx_messageInfo_CreateQueryChannelResponse.Size(m)
|
|
}
|
|
func (m *CreateQueryChannelResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateQueryChannelResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateQueryChannelResponse proto.InternalMessageInfo
|
|
|
|
func (m *CreateQueryChannelResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateQueryChannelResponse) GetRequestChannel() string {
|
|
if m != nil {
|
|
return m.RequestChannel
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateQueryChannelResponse) GetResultChannel() string {
|
|
if m != nil {
|
|
return m.ResultChannel
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type GetPartitionStatesRequest 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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetPartitionStatesRequest) Reset() { *m = GetPartitionStatesRequest{} }
|
|
func (m *GetPartitionStatesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetPartitionStatesRequest) ProtoMessage() {}
|
|
func (*GetPartitionStatesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{10}
|
|
}
|
|
|
|
func (m *GetPartitionStatesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetPartitionStatesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetPartitionStatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetPartitionStatesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetPartitionStatesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetPartitionStatesRequest.Merge(m, src)
|
|
}
|
|
func (m *GetPartitionStatesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetPartitionStatesRequest.Size(m)
|
|
}
|
|
func (m *GetPartitionStatesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetPartitionStatesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetPartitionStatesRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetPartitionStatesRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetPartitionStatesRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetPartitionStatesRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetPartitionStatesRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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:"-"`
|
|
}
|
|
|
|
func (m *PartitionStates) Reset() { *m = PartitionStates{} }
|
|
func (m *PartitionStates) String() string { return proto.CompactTextString(m) }
|
|
func (*PartitionStates) ProtoMessage() {}
|
|
func (*PartitionStates) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{11}
|
|
}
|
|
|
|
func (m *PartitionStates) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_PartitionStates.Unmarshal(m, b)
|
|
}
|
|
func (m *PartitionStates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_PartitionStates.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *PartitionStates) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_PartitionStates.Merge(m, src)
|
|
}
|
|
func (m *PartitionStates) XXX_Size() int {
|
|
return xxx_messageInfo_PartitionStates.Size(m)
|
|
}
|
|
func (m *PartitionStates) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_PartitionStates.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_PartitionStates proto.InternalMessageInfo
|
|
|
|
func (m *PartitionStates) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *PartitionStates) GetState() PartitionState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return PartitionState_NotExist
|
|
}
|
|
|
|
func (m *PartitionStates) GetInMemoryPercentage() int64 {
|
|
if m != nil {
|
|
return m.InMemoryPercentage
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetPartitionStatesResponse struct {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetPartitionStatesResponse) Reset() { *m = GetPartitionStatesResponse{} }
|
|
func (m *GetPartitionStatesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetPartitionStatesResponse) ProtoMessage() {}
|
|
func (*GetPartitionStatesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{12}
|
|
}
|
|
|
|
func (m *GetPartitionStatesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetPartitionStatesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetPartitionStatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetPartitionStatesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetPartitionStatesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetPartitionStatesResponse.Merge(m, src)
|
|
}
|
|
func (m *GetPartitionStatesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetPartitionStatesResponse.Size(m)
|
|
}
|
|
func (m *GetPartitionStatesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetPartitionStatesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetPartitionStatesResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetPartitionStatesResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetPartitionStatesResponse) GetPartitionDescriptions() []*PartitionStates {
|
|
if m != nil {
|
|
return m.PartitionDescriptions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) Reset() { *m = GetSegmentInfoRequest{} }
|
|
func (m *GetSegmentInfoRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentInfoRequest) ProtoMessage() {}
|
|
func (*GetSegmentInfoRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{13}
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentInfoRequest.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Size(m)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentInfoRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentInfoRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentInfoRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentInfo struct {
|
|
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"`
|
|
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"`
|
|
ChannelID string `protobuf:"bytes,9,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
SegmentState SegmentState `protobuf:"varint,10,opt,name=segment_state,json=segmentState,proto3,enum=milvus.proto.query.SegmentState" json:"segment_state,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentInfo) Reset() { *m = SegmentInfo{} }
|
|
func (m *SegmentInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentInfo) ProtoMessage() {}
|
|
func (*SegmentInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{14}
|
|
}
|
|
|
|
func (m *SegmentInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentInfo.Merge(m, src)
|
|
}
|
|
func (m *SegmentInfo) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentInfo.Size(m)
|
|
}
|
|
func (m *SegmentInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentInfo proto.InternalMessageInfo
|
|
|
|
func (m *SegmentInfo) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetMemSize() int64 {
|
|
if m != nil {
|
|
return m.MemSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetNumRows() int64 {
|
|
if m != nil {
|
|
return m.NumRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetIndexName() string {
|
|
if m != nil {
|
|
return m.IndexName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegmentInfo) GetIndexID() int64 {
|
|
if m != nil {
|
|
return m.IndexID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetChannelID() string {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegmentInfo) GetSegmentState() SegmentState {
|
|
if m != nil {
|
|
return m.SegmentState
|
|
}
|
|
return SegmentState_None
|
|
}
|
|
|
|
type GetSegmentInfoResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) Reset() { *m = GetSegmentInfoResponse{} }
|
|
func (m *GetSegmentInfoResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentInfoResponse) ProtoMessage() {}
|
|
func (*GetSegmentInfoResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{15}
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentInfoResponse.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Size(m)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentInfoResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentInfoResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentInfoResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) GetInfos() []*SegmentInfo {
|
|
if m != nil {
|
|
return m.Infos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//-----------------query node proto----------------
|
|
type AddQueryChannelRequest 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"`
|
|
RequestChannelID string `protobuf:"bytes,4,opt,name=request_channelID,json=requestChannelID,proto3" json:"request_channelID,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,5,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) Reset() { *m = AddQueryChannelRequest{} }
|
|
func (m *AddQueryChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AddQueryChannelRequest) ProtoMessage() {}
|
|
func (*AddQueryChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{16}
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AddQueryChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AddQueryChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AddQueryChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AddQueryChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AddQueryChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *AddQueryChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AddQueryChannelRequest.Size(m)
|
|
}
|
|
func (m *AddQueryChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AddQueryChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AddQueryChannelRequest proto.InternalMessageInfo
|
|
|
|
func (m *AddQueryChannelRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) GetRequestChannelID() string {
|
|
if m != nil {
|
|
return m.RequestChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AddQueryChannelRequest) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type RemoveQueryChannelRequest 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"`
|
|
RequestChannelID string `protobuf:"bytes,4,opt,name=request_channelID,json=requestChannelID,proto3" json:"request_channelID,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,5,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) Reset() { *m = RemoveQueryChannelRequest{} }
|
|
func (m *RemoveQueryChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*RemoveQueryChannelRequest) ProtoMessage() {}
|
|
func (*RemoveQueryChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{17}
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RemoveQueryChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *RemoveQueryChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RemoveQueryChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RemoveQueryChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RemoveQueryChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *RemoveQueryChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_RemoveQueryChannelRequest.Size(m)
|
|
}
|
|
func (m *RemoveQueryChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RemoveQueryChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RemoveQueryChannelRequest proto.InternalMessageInfo
|
|
|
|
func (m *RemoveQueryChannelRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) GetRequestChannelID() string {
|
|
if m != nil {
|
|
return m.RequestChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *RemoveQueryChannelRequest) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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"`
|
|
PartitionID int64 `protobuf:"varint,4,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
Infos []*datapb.VchannelInfo `protobuf:"bytes,5,rep,name=infos,proto3" json:"infos,omitempty"`
|
|
Schema *schemapb.CollectionSchema `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
ExcludeInfos []*datapb.SegmentInfo `protobuf:"bytes,7,rep,name=exclude_infos,json=excludeInfos,proto3" json:"exclude_infos,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) Reset() { *m = WatchDmChannelsRequest{} }
|
|
func (m *WatchDmChannelsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*WatchDmChannelsRequest) ProtoMessage() {}
|
|
func (*WatchDmChannelsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{18}
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WatchDmChannelsRequest.Merge(m, src)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Size(m)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WatchDmChannelsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WatchDmChannelsRequest proto.InternalMessageInfo
|
|
|
|
func (m *WatchDmChannelsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetInfos() []*datapb.VchannelInfo {
|
|
if m != nil {
|
|
return m.Infos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetSchema() *schemapb.CollectionSchema {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetExcludeInfos() []*datapb.SegmentInfo {
|
|
if m != nil {
|
|
return m.ExcludeInfos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//used for handoff task
|
|
type SegmentLoadInfo struct {
|
|
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"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) Reset() { *m = SegmentLoadInfo{} }
|
|
func (m *SegmentLoadInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentLoadInfo) ProtoMessage() {}
|
|
func (*SegmentLoadInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{19}
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentLoadInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentLoadInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentLoadInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentLoadInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentLoadInfo.Merge(m, src)
|
|
}
|
|
func (m *SegmentLoadInfo) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentLoadInfo.Size(m)
|
|
}
|
|
func (m *SegmentLoadInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentLoadInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentLoadInfo proto.InternalMessageInfo
|
|
|
|
func (m *SegmentLoadInfo) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetFlushTime() int64 {
|
|
if m != nil {
|
|
return m.FlushTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetBinlogPaths() []*datapb.FieldBinlog {
|
|
if m != nil {
|
|
return m.BinlogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentLoadInfo) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type LoadSegmentsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
NodeID int64 `protobuf:"varint,2,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
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"`
|
|
LoadCondition TriggerCondition `protobuf:"varint,5,opt,name=load_condition,json=loadCondition,proto3,enum=milvus.proto.query.TriggerCondition" json:"load_condition,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoadSegmentsRequest) Reset() { *m = LoadSegmentsRequest{} }
|
|
func (m *LoadSegmentsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*LoadSegmentsRequest) ProtoMessage() {}
|
|
func (*LoadSegmentsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{20}
|
|
}
|
|
|
|
func (m *LoadSegmentsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoadSegmentsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *LoadSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoadSegmentsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoadSegmentsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoadSegmentsRequest.Merge(m, src)
|
|
}
|
|
func (m *LoadSegmentsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_LoadSegmentsRequest.Size(m)
|
|
}
|
|
func (m *LoadSegmentsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoadSegmentsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoadSegmentsRequest proto.InternalMessageInfo
|
|
|
|
func (m *LoadSegmentsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LoadSegmentsRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
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
|
|
}
|
|
|
|
func (m *LoadSegmentsRequest) GetLoadCondition() TriggerCondition {
|
|
if m != nil {
|
|
return m.LoadCondition
|
|
}
|
|
return TriggerCondition_handoff
|
|
}
|
|
|
|
type ReleaseSegmentsRequest 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"`
|
|
// 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:"-"`
|
|
}
|
|
|
|
func (m *ReleaseSegmentsRequest) Reset() { *m = ReleaseSegmentsRequest{} }
|
|
func (m *ReleaseSegmentsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ReleaseSegmentsRequest) ProtoMessage() {}
|
|
func (*ReleaseSegmentsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{21}
|
|
}
|
|
|
|
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 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
type DmChannelInfo struct {
|
|
NodeIDLoaded int64 `protobuf:"varint,1,opt,name=nodeID_loaded,json=nodeIDLoaded,proto3" json:"nodeID_loaded,omitempty"`
|
|
ChannelIDs []string `protobuf:"bytes,2,rep,name=channelIDs,proto3" json:"channelIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DmChannelInfo) Reset() { *m = DmChannelInfo{} }
|
|
func (m *DmChannelInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*DmChannelInfo) ProtoMessage() {}
|
|
func (*DmChannelInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{22}
|
|
}
|
|
|
|
func (m *DmChannelInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DmChannelInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *DmChannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DmChannelInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DmChannelInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DmChannelInfo.Merge(m, src)
|
|
}
|
|
func (m *DmChannelInfo) XXX_Size() int {
|
|
return xxx_messageInfo_DmChannelInfo.Size(m)
|
|
}
|
|
func (m *DmChannelInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DmChannelInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DmChannelInfo proto.InternalMessageInfo
|
|
|
|
func (m *DmChannelInfo) GetNodeIDLoaded() int64 {
|
|
if m != nil {
|
|
return m.NodeIDLoaded
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DmChannelInfo) GetChannelIDs() []string {
|
|
if m != nil {
|
|
return m.ChannelIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type QueryChannelInfo struct {
|
|
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
QueryChannelID string `protobuf:"bytes,2,opt,name=query_channelID,json=queryChannelID,proto3" json:"query_channelID,omitempty"`
|
|
QueryResultChannelID string `protobuf:"bytes,3,opt,name=query_result_channelID,json=queryResultChannelID,proto3" json:"query_result_channelID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *QueryChannelInfo) Reset() { *m = QueryChannelInfo{} }
|
|
func (m *QueryChannelInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*QueryChannelInfo) ProtoMessage() {}
|
|
func (*QueryChannelInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{23}
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (m *QueryChannelInfo) GetQueryChannelID() string {
|
|
if m != nil {
|
|
return m.QueryChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *QueryChannelInfo) GetQueryResultChannelID() string {
|
|
if m != nil {
|
|
return m.QueryResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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"`
|
|
ChannelInfos []*DmChannelInfo `protobuf:"bytes,4,rep,name=channel_infos,json=channelInfos,proto3" json:"channel_infos,omitempty"`
|
|
LoadType LoadType `protobuf:"varint,5,opt,name=load_type,json=loadType,proto3,enum=milvus.proto.query.LoadType" json:"load_type,omitempty"`
|
|
Schema *schemapb.CollectionSchema `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
ReleasedPartitionIDs []int64 `protobuf:"varint,7,rep,packed,name=released_partitionIDs,json=releasedPartitionIDs,proto3" json:"released_partitionIDs,omitempty"`
|
|
InMemoryPercentage int64 `protobuf:"varint,8,opt,name=inMemory_percentage,json=inMemoryPercentage,proto3" json:"inMemory_percentage,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CollectionInfo) Reset() { *m = CollectionInfo{} }
|
|
func (m *CollectionInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*CollectionInfo) ProtoMessage() {}
|
|
func (*CollectionInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{24}
|
|
}
|
|
|
|
func (m *CollectionInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CollectionInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *CollectionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CollectionInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CollectionInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CollectionInfo.Merge(m, src)
|
|
}
|
|
func (m *CollectionInfo) XXX_Size() int {
|
|
return xxx_messageInfo_CollectionInfo.Size(m)
|
|
}
|
|
func (m *CollectionInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CollectionInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CollectionInfo proto.InternalMessageInfo
|
|
|
|
func (m *CollectionInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CollectionInfo) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetPartitionStates() []*PartitionStates {
|
|
if m != nil {
|
|
return m.PartitionStates
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetChannelInfos() []*DmChannelInfo {
|
|
if m != nil {
|
|
return m.ChannelInfos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetLoadType() LoadType {
|
|
if m != nil {
|
|
return m.LoadType
|
|
}
|
|
return LoadType_LoadPartition
|
|
}
|
|
|
|
func (m *CollectionInfo) GetSchema() *schemapb.CollectionSchema {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetReleasedPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.ReleasedPartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetInMemoryPercentage() int64 {
|
|
if m != nil {
|
|
return m.InMemoryPercentage
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type HandoffSegments struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Infos []*SegmentLoadInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HandoffSegments) Reset() { *m = HandoffSegments{} }
|
|
func (m *HandoffSegments) String() string { return proto.CompactTextString(m) }
|
|
func (*HandoffSegments) ProtoMessage() {}
|
|
func (*HandoffSegments) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{25}
|
|
}
|
|
|
|
func (m *HandoffSegments) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HandoffSegments.Unmarshal(m, b)
|
|
}
|
|
func (m *HandoffSegments) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HandoffSegments.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HandoffSegments) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HandoffSegments.Merge(m, src)
|
|
}
|
|
func (m *HandoffSegments) XXX_Size() int {
|
|
return xxx_messageInfo_HandoffSegments.Size(m)
|
|
}
|
|
func (m *HandoffSegments) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HandoffSegments.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HandoffSegments proto.InternalMessageInfo
|
|
|
|
func (m *HandoffSegments) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *HandoffSegments) GetInfos() []*SegmentLoadInfo {
|
|
if m != nil {
|
|
return m.Infos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LoadBalanceSegmentInfo struct {
|
|
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"`
|
|
SourceNodeID int64 `protobuf:"varint,4,opt,name=source_nodeID,json=sourceNodeID,proto3" json:"source_nodeID,omitempty"`
|
|
DstNodeID int64 `protobuf:"varint,5,opt,name=dst_nodeID,json=dstNodeID,proto3" json:"dst_nodeID,omitempty"`
|
|
SourceDone bool `protobuf:"varint,6,opt,name=source_done,json=sourceDone,proto3" json:"source_done,omitempty"`
|
|
DstDone bool `protobuf:"varint,7,opt,name=dst_done,json=dstDone,proto3" json:"dst_done,omitempty"`
|
|
ValidInfo bool `protobuf:"varint,8,opt,name=valid_info,json=validInfo,proto3" json:"valid_info,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) Reset() { *m = LoadBalanceSegmentInfo{} }
|
|
func (m *LoadBalanceSegmentInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*LoadBalanceSegmentInfo) ProtoMessage() {}
|
|
func (*LoadBalanceSegmentInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{26}
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoadBalanceSegmentInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *LoadBalanceSegmentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoadBalanceSegmentInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoadBalanceSegmentInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoadBalanceSegmentInfo.Merge(m, src)
|
|
}
|
|
func (m *LoadBalanceSegmentInfo) XXX_Size() int {
|
|
return xxx_messageInfo_LoadBalanceSegmentInfo.Size(m)
|
|
}
|
|
func (m *LoadBalanceSegmentInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoadBalanceSegmentInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoadBalanceSegmentInfo proto.InternalMessageInfo
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetSourceNodeID() int64 {
|
|
if m != nil {
|
|
return m.SourceNodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetDstNodeID() int64 {
|
|
if m != nil {
|
|
return m.DstNodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetSourceDone() bool {
|
|
if m != nil {
|
|
return m.SourceDone
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetDstDone() bool {
|
|
if m != nil {
|
|
return m.DstDone
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *LoadBalanceSegmentInfo) GetValidInfo() bool {
|
|
if m != nil {
|
|
return m.ValidInfo
|
|
}
|
|
return false
|
|
}
|
|
|
|
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"`
|
|
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) {
|
|
return fileDescriptor_aab7cc9a69ed26e8, []int{27}
|
|
}
|
|
|
|
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_handoff
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("milvus.proto.query.PartitionState", PartitionState_name, PartitionState_value)
|
|
proto.RegisterEnum("milvus.proto.query.TriggerCondition", TriggerCondition_name, TriggerCondition_value)
|
|
proto.RegisterEnum("milvus.proto.query.SegmentState", SegmentState_name, SegmentState_value)
|
|
proto.RegisterEnum("milvus.proto.query.LoadType", LoadType_name, LoadType_value)
|
|
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")
|
|
proto.RegisterType((*LoadCollectionRequest)(nil), "milvus.proto.query.LoadCollectionRequest")
|
|
proto.RegisterType((*ReleaseCollectionRequest)(nil), "milvus.proto.query.ReleaseCollectionRequest")
|
|
proto.RegisterType((*LoadPartitionsRequest)(nil), "milvus.proto.query.LoadPartitionsRequest")
|
|
proto.RegisterType((*ReleasePartitionsRequest)(nil), "milvus.proto.query.ReleasePartitionsRequest")
|
|
proto.RegisterType((*CreateQueryChannelRequest)(nil), "milvus.proto.query.CreateQueryChannelRequest")
|
|
proto.RegisterType((*CreateQueryChannelResponse)(nil), "milvus.proto.query.CreateQueryChannelResponse")
|
|
proto.RegisterType((*GetPartitionStatesRequest)(nil), "milvus.proto.query.GetPartitionStatesRequest")
|
|
proto.RegisterType((*PartitionStates)(nil), "milvus.proto.query.PartitionStates")
|
|
proto.RegisterType((*GetPartitionStatesResponse)(nil), "milvus.proto.query.GetPartitionStatesResponse")
|
|
proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.proto.query.GetSegmentInfoRequest")
|
|
proto.RegisterType((*SegmentInfo)(nil), "milvus.proto.query.SegmentInfo")
|
|
proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.proto.query.GetSegmentInfoResponse")
|
|
proto.RegisterType((*AddQueryChannelRequest)(nil), "milvus.proto.query.AddQueryChannelRequest")
|
|
proto.RegisterType((*RemoveQueryChannelRequest)(nil), "milvus.proto.query.RemoveQueryChannelRequest")
|
|
proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.proto.query.WatchDmChannelsRequest")
|
|
proto.RegisterType((*SegmentLoadInfo)(nil), "milvus.proto.query.SegmentLoadInfo")
|
|
proto.RegisterType((*LoadSegmentsRequest)(nil), "milvus.proto.query.LoadSegmentsRequest")
|
|
proto.RegisterType((*ReleaseSegmentsRequest)(nil), "milvus.proto.query.ReleaseSegmentsRequest")
|
|
proto.RegisterType((*DmChannelInfo)(nil), "milvus.proto.query.DmChannelInfo")
|
|
proto.RegisterType((*QueryChannelInfo)(nil), "milvus.proto.query.QueryChannelInfo")
|
|
proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.query.CollectionInfo")
|
|
proto.RegisterType((*HandoffSegments)(nil), "milvus.proto.query.HandoffSegments")
|
|
proto.RegisterType((*LoadBalanceSegmentInfo)(nil), "milvus.proto.query.LoadBalanceSegmentInfo")
|
|
proto.RegisterType((*LoadBalanceRequest)(nil), "milvus.proto.query.LoadBalanceRequest")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("query_coord.proto", fileDescriptor_aab7cc9a69ed26e8) }
|
|
|
|
var fileDescriptor_aab7cc9a69ed26e8 = []byte{
|
|
// 1978 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x73, 0xdc, 0x48,
|
|
0x15, 0xb7, 0x66, 0xc6, 0xf3, 0xf1, 0xe6, 0x4b, 0xe9, 0xc4, 0x66, 0x32, 0x6c, 0xb2, 0x46, 0xd9,
|
|
0x6c, 0xb2, 0x5e, 0xd6, 0xde, 0x75, 0x96, 0x2a, 0x72, 0xe0, 0xb0, 0xf1, 0x6c, 0xcc, 0xc0, 0xc6,
|
|
0x31, 0xb2, 0x59, 0x8a, 0x54, 0xaa, 0x84, 0x46, 0x6a, 0x8f, 0x55, 0x2b, 0xa9, 0x27, 0x6a, 0x4d,
|
|
0x1c, 0xe7, 0xc0, 0x89, 0x1b, 0x67, 0x4e, 0x50, 0x54, 0x51, 0xc5, 0x47, 0x71, 0xe0, 0x1f, 0xe0,
|
|
0xb4, 0x17, 0xee, 0xfc, 0x03, 0x50, 0x45, 0xc1, 0x9d, 0x7f, 0x81, 0xea, 0x56, 0x4b, 0xa3, 0x8f,
|
|
0x1e, 0x7b, 0x62, 0x63, 0x92, 0xda, 0xe2, 0x36, 0xfd, 0xfa, 0xe9, 0xbd, 0xd7, 0xef, 0xe3, 0xd7,
|
|
0xaf, 0xdf, 0xc0, 0x95, 0x67, 0x53, 0x1c, 0x9c, 0x18, 0x16, 0x21, 0x81, 0xbd, 0x31, 0x09, 0x48,
|
|
0x48, 0x10, 0xf2, 0x1c, 0xf7, 0xf9, 0x94, 0x46, 0xab, 0x0d, 0xbe, 0xdf, 0x6f, 0x59, 0xc4, 0xf3,
|
|
0x88, 0x1f, 0xd1, 0xfa, 0xad, 0x34, 0x47, 0xbf, 0xe3, 0xf8, 0x21, 0x0e, 0x7c, 0xd3, 0x8d, 0x77,
|
|
0xa9, 0x75, 0x84, 0x3d, 0x53, 0xac, 0x54, 0xdb, 0x0c, 0xcd, 0xb4, 0x7c, 0xed, 0x67, 0x0a, 0xac,
|
|
0xee, 0x1f, 0x91, 0xe3, 0x6d, 0xe2, 0xba, 0xd8, 0x0a, 0x1d, 0xe2, 0x53, 0x1d, 0x3f, 0x9b, 0x62,
|
|
0x1a, 0xa2, 0x0f, 0xa1, 0x32, 0x32, 0x29, 0xee, 0x29, 0x6b, 0xca, 0xdd, 0xe6, 0xd6, 0x5b, 0x1b,
|
|
0x19, 0x4b, 0x84, 0x09, 0x8f, 0xe8, 0xf8, 0x81, 0x49, 0xb1, 0xce, 0x39, 0x11, 0x82, 0x8a, 0x3d,
|
|
0x1a, 0x0e, 0x7a, 0xa5, 0x35, 0xe5, 0x6e, 0x59, 0xe7, 0xbf, 0xd1, 0x3b, 0xd0, 0xb6, 0x12, 0xd9,
|
|
0xc3, 0x01, 0xed, 0x95, 0xd7, 0xca, 0x77, 0xcb, 0x7a, 0x96, 0xa8, 0xfd, 0x41, 0x81, 0xaf, 0x15,
|
|
0xcc, 0xa0, 0x13, 0xe2, 0x53, 0x8c, 0xee, 0x41, 0x95, 0x86, 0x66, 0x38, 0xa5, 0xc2, 0x92, 0xaf,
|
|
0x4b, 0x2d, 0xd9, 0xe7, 0x2c, 0xba, 0x60, 0x2d, 0xaa, 0x2d, 0x49, 0xd4, 0xa2, 0x8f, 0xe0, 0x9a,
|
|
0xe3, 0x3f, 0xc2, 0x1e, 0x09, 0x4e, 0x8c, 0x09, 0x0e, 0x2c, 0xec, 0x87, 0xe6, 0x18, 0xc7, 0x36,
|
|
0x5e, 0x8d, 0xf7, 0xf6, 0x66, 0x5b, 0xda, 0xef, 0x14, 0x58, 0x61, 0x96, 0xee, 0x99, 0x41, 0xe8,
|
|
0x5c, 0x82, 0xbf, 0x34, 0x68, 0xa5, 0x6d, 0xec, 0x95, 0xf9, 0x5e, 0x86, 0xc6, 0x78, 0x26, 0xb1,
|
|
0x7a, 0x76, 0xb6, 0x0a, 0x37, 0x37, 0x43, 0xd3, 0x7e, 0x2b, 0x02, 0x9b, 0xb6, 0xf3, 0x22, 0x0e,
|
|
0xcd, 0xeb, 0x2c, 0x15, 0x75, 0x9e, 0xc7, 0x9d, 0x5f, 0x2a, 0xb0, 0xf2, 0x19, 0x31, 0xed, 0x59,
|
|
0xe0, 0xff, 0xf7, 0xee, 0xfc, 0x0e, 0x54, 0xa3, 0x2a, 0xe9, 0x55, 0xb8, 0xae, 0xdb, 0x59, 0x5d,
|
|
0xa2, 0x82, 0x66, 0x16, 0xee, 0x73, 0x82, 0x2e, 0x3e, 0xd2, 0x7e, 0xa5, 0x40, 0x4f, 0xc7, 0x2e,
|
|
0x36, 0x29, 0x7e, 0x9d, 0xa7, 0x58, 0x85, 0xaa, 0x4f, 0x6c, 0x3c, 0x1c, 0xf0, 0x53, 0x94, 0x75,
|
|
0xb1, 0xd2, 0xfe, 0x25, 0x3c, 0xfc, 0x86, 0x27, 0x6c, 0x2a, 0x0a, 0xcb, 0xe7, 0x89, 0xc2, 0x97,
|
|
0xb3, 0x28, 0xbc, 0xe9, 0x27, 0x9d, 0x45, 0x6a, 0x39, 0x13, 0xa9, 0x1f, 0xc3, 0xf5, 0xed, 0x00,
|
|
0x9b, 0x21, 0xfe, 0x01, 0x83, 0xf9, 0xed, 0x23, 0xd3, 0xf7, 0xb1, 0x1b, 0x1f, 0x21, 0xaf, 0x5c,
|
|
0x91, 0x28, 0xef, 0x41, 0x6d, 0x12, 0x90, 0x17, 0x27, 0x89, 0xdd, 0xf1, 0x52, 0xfb, 0x8d, 0x02,
|
|
0x7d, 0x99, 0xec, 0x8b, 0x20, 0xc2, 0x1d, 0xe8, 0x06, 0x91, 0x71, 0x86, 0x15, 0xc9, 0xe3, 0x5a,
|
|
0x1b, 0x7a, 0x47, 0x90, 0x85, 0x16, 0x74, 0x1b, 0x3a, 0x01, 0xa6, 0x53, 0x77, 0xc6, 0x57, 0xe6,
|
|
0x7c, 0xed, 0x88, 0x2a, 0xd8, 0xb4, 0x3f, 0x2a, 0x70, 0x7d, 0x07, 0x87, 0x49, 0xf4, 0x98, 0x3a,
|
|
0xfc, 0x86, 0xa2, 0xeb, 0xaf, 0x15, 0xe8, 0xe6, 0x0c, 0x45, 0x6b, 0xd0, 0x4c, 0xf1, 0x88, 0x00,
|
|
0xa5, 0x49, 0xe8, 0xdb, 0xb0, 0xcc, 0x7c, 0x87, 0xb9, 0x49, 0x9d, 0x2d, 0x6d, 0xa3, 0x78, 0xb9,
|
|
0x6f, 0x64, 0xa5, 0xea, 0xd1, 0x07, 0x68, 0x13, 0xae, 0x4a, 0x90, 0x55, 0x98, 0x8f, 0x8a, 0xc0,
|
|
0xaa, 0xfd, 0x49, 0x81, 0xbe, 0xcc, 0x99, 0x17, 0x09, 0xf8, 0x13, 0x58, 0x4d, 0x4e, 0x63, 0xd8,
|
|
0x98, 0x5a, 0x81, 0x33, 0xe1, 0x65, 0xc6, 0x2f, 0x83, 0xe6, 0xd6, 0xad, 0xb3, 0xcf, 0x43, 0xf5,
|
|
0x95, 0x44, 0xc4, 0x20, 0x25, 0x41, 0x73, 0x60, 0x65, 0x07, 0x87, 0xfb, 0x78, 0xec, 0x61, 0x3f,
|
|
0x1c, 0xfa, 0x87, 0xe4, 0xfc, 0x71, 0xbf, 0x09, 0x40, 0x85, 0x9c, 0xe4, 0x9e, 0x4a, 0x51, 0xb4,
|
|
0xbf, 0x95, 0xa0, 0x99, 0x52, 0x84, 0xde, 0x82, 0x46, 0xb2, 0x2b, 0xa2, 0x36, 0x23, 0x14, 0x32,
|
|
0xa6, 0x24, 0xc9, 0x98, 0x5c, 0xe4, 0xcb, 0xc5, 0xc8, 0xcf, 0x01, 0x67, 0x74, 0x1d, 0xea, 0x1e,
|
|
0xf6, 0x0c, 0xea, 0xbc, 0xc4, 0x02, 0x0c, 0x6a, 0x1e, 0xf6, 0xf6, 0x9d, 0x97, 0x98, 0x6d, 0xf9,
|
|
0x53, 0xcf, 0x08, 0xc8, 0x31, 0xed, 0x55, 0xa3, 0x2d, 0x7f, 0xea, 0xe9, 0xe4, 0x98, 0xa2, 0x1b,
|
|
0x00, 0x8e, 0x6f, 0xe3, 0x17, 0x86, 0x6f, 0x7a, 0xb8, 0x57, 0xe3, 0xc5, 0xd4, 0xe0, 0x94, 0x5d,
|
|
0xd3, 0xc3, 0x0c, 0x06, 0xf8, 0x62, 0x38, 0xe8, 0xd5, 0xa3, 0x0f, 0xc5, 0x92, 0x1d, 0x55, 0x94,
|
|
0xe0, 0x70, 0xd0, 0x6b, 0x44, 0xdf, 0x25, 0x04, 0xf4, 0x29, 0xb4, 0xc5, 0xb9, 0x8d, 0x28, 0x4d,
|
|
0x81, 0xa7, 0xe9, 0x9a, 0x2c, 0xac, 0xc2, 0x81, 0x51, 0x92, 0xb6, 0x68, 0x6a, 0xc5, 0x5b, 0xca,
|
|
0x7c, 0x2c, 0x2f, 0x92, 0x76, 0xdf, 0x82, 0x65, 0xc7, 0x3f, 0x24, 0x71, 0x96, 0xbd, 0x7d, 0x8a,
|
|
0x39, 0x5c, 0x59, 0xc4, 0xad, 0xfd, 0x5d, 0x81, 0xd5, 0x4f, 0x6c, 0x5b, 0x86, 0xa5, 0xaf, 0x9e,
|
|
0x53, 0xb3, 0xf8, 0x95, 0x32, 0xf1, 0x5b, 0x04, 0x4f, 0xde, 0x87, 0x2b, 0x39, 0x9c, 0x14, 0x69,
|
|
0xd0, 0xd0, 0xd5, 0x2c, 0x52, 0x0e, 0x07, 0xe8, 0x3d, 0x50, 0xb3, 0x58, 0x29, 0x6e, 0x89, 0x86,
|
|
0xde, 0xcd, 0xa0, 0xe5, 0x70, 0xa0, 0xfd, 0x43, 0x81, 0xeb, 0x3a, 0xf6, 0xc8, 0x73, 0xfc, 0xd5,
|
|
0x3d, 0xe3, 0x3f, 0x4b, 0xb0, 0xfa, 0x23, 0x33, 0xb4, 0x8e, 0x06, 0x9e, 0x20, 0xd2, 0xd7, 0x73,
|
|
0xc0, 0x5c, 0x89, 0x57, 0x8a, 0x25, 0x9e, 0xa4, 0xe9, 0xb2, 0x2c, 0x4d, 0xd9, 0xc3, 0x6b, 0xe3,
|
|
0xf3, 0xf8, 0xbc, 0xb3, 0x34, 0x4d, 0xb5, 0x3d, 0xd5, 0x73, 0xb4, 0x3d, 0x68, 0x1b, 0xda, 0xf8,
|
|
0x85, 0xe5, 0x4e, 0x6d, 0x6c, 0x44, 0xda, 0x6b, 0x5c, 0xfb, 0x4d, 0x89, 0xf6, 0x74, 0x8d, 0xb4,
|
|
0xc4, 0x47, 0x43, 0x5e, 0x2a, 0x3f, 0x2f, 0x41, 0x57, 0xec, 0xb2, 0x4e, 0x71, 0x01, 0x54, 0xcc,
|
|
0xb9, 0xa3, 0x54, 0x74, 0xc7, 0x22, 0x4e, 0x8d, 0x6f, 0xe8, 0x4a, 0xea, 0x86, 0xbe, 0x01, 0x70,
|
|
0xe8, 0x4e, 0xe9, 0x91, 0x11, 0x3a, 0x5e, 0x8c, 0x89, 0x0d, 0x4e, 0x39, 0x70, 0x3c, 0x8c, 0x3e,
|
|
0x81, 0xd6, 0xc8, 0xf1, 0x5d, 0x32, 0x36, 0x26, 0x66, 0x78, 0xc4, 0x90, 0x71, 0xde, 0x71, 0x1f,
|
|
0x3a, 0xd8, 0xb5, 0x1f, 0x70, 0x5e, 0xbd, 0x19, 0x7d, 0xb3, 0xc7, 0x3e, 0x41, 0x37, 0xa1, 0xc9,
|
|
0x80, 0x95, 0x1c, 0x46, 0xd8, 0x5a, 0x8b, 0x54, 0xf8, 0x53, 0xef, 0xf1, 0x21, 0x43, 0x57, 0xed,
|
|
0xf7, 0x25, 0xb8, 0xca, 0xdc, 0x20, 0x3c, 0x72, 0x09, 0x09, 0x77, 0x3f, 0x4e, 0x95, 0xf2, 0xfc,
|
|
0x7b, 0x33, 0x17, 0x8f, 0x62, 0xba, 0x9c, 0xe7, 0xad, 0x82, 0xbe, 0x0f, 0x1d, 0x97, 0x98, 0xb6,
|
|
0x61, 0x11, 0xdf, 0xe6, 0x91, 0xe2, 0x1e, 0xee, 0x6c, 0xbd, 0x23, 0x33, 0xe1, 0x20, 0x70, 0xc6,
|
|
0x63, 0x1c, 0x6c, 0xc7, 0xbc, 0x7a, 0xdb, 0xe5, 0x2f, 0x35, 0xb1, 0xe4, 0x08, 0x2b, 0x5a, 0xee,
|
|
0xcb, 0xf3, 0x55, 0x9c, 0x23, 0xe5, 0x53, 0xba, 0xb8, 0xca, 0x02, 0x5d, 0xdc, 0xb2, 0xa4, 0x11,
|
|
0xcf, 0x76, 0x0a, 0xd5, 0x42, 0xa7, 0x70, 0x00, 0xed, 0x04, 0x77, 0x78, 0x51, 0xdc, 0x82, 0x76,
|
|
0x64, 0x96, 0xc1, 0x3c, 0x81, 0xed, 0xb8, 0x0b, 0x8f, 0x88, 0x9f, 0x71, 0x1a, 0x93, 0x9a, 0xe0,
|
|
0x5a, 0x74, 0x69, 0x35, 0xf4, 0x14, 0x45, 0xfb, 0x85, 0x02, 0x6a, 0x1a, 0xb1, 0xb9, 0xe4, 0x45,
|
|
0xda, 0xfb, 0x3b, 0xd0, 0x15, 0x03, 0xa2, 0x04, 0x36, 0x45, 0xc3, 0xfd, 0x2c, 0x2d, 0x6e, 0x80,
|
|
0x3e, 0x86, 0xd5, 0x88, 0xb1, 0x00, 0xb3, 0x51, 0xe3, 0x7d, 0x8d, 0xef, 0xea, 0x39, 0xac, 0xfd,
|
|
0x6b, 0x19, 0x3a, 0xb3, 0xc4, 0x59, 0xd8, 0xaa, 0x45, 0x06, 0x03, 0xbb, 0xa0, 0xce, 0x3a, 0x47,
|
|
0xde, 0x5b, 0x9c, 0x9a, 0xfb, 0xf9, 0x9e, 0xb1, 0x3b, 0xc9, 0xb5, 0xda, 0x0f, 0xa1, 0x2d, 0xce,
|
|
0x24, 0x50, 0xaf, 0xc2, 0x85, 0x7d, 0x43, 0x26, 0x2c, 0x13, 0x41, 0xbd, 0x95, 0x82, 0x60, 0x8a,
|
|
0xee, 0x43, 0x83, 0x97, 0x43, 0x78, 0x32, 0xc1, 0xa2, 0x12, 0xde, 0x92, 0xc9, 0x60, 0x91, 0x3d,
|
|
0x38, 0x99, 0x60, 0xbd, 0xee, 0x8a, 0x5f, 0x17, 0xc5, 0xed, 0x7b, 0xb0, 0x12, 0x44, 0xa5, 0x63,
|
|
0x1b, 0x19, 0xf7, 0xd5, 0xb8, 0xfb, 0xae, 0xc5, 0x9b, 0x7b, 0x69, 0x37, 0xce, 0x79, 0x05, 0xd4,
|
|
0xe7, 0xbe, 0x02, 0x7e, 0x0a, 0xdd, 0xef, 0x9a, 0xbe, 0x4d, 0x0e, 0x0f, 0xe3, 0x02, 0x3d, 0x47,
|
|
0x65, 0xde, 0xcf, 0xf6, 0x5f, 0xaf, 0x80, 0x56, 0xda, 0x2f, 0x4b, 0xb0, 0xca, 0x68, 0x0f, 0x4c,
|
|
0xd7, 0xf4, 0x2d, 0xbc, 0x78, 0xd7, 0xfd, 0xdf, 0xb9, 0x5f, 0x6e, 0x41, 0x9b, 0x92, 0x69, 0x60,
|
|
0x61, 0x23, 0xd3, 0x7c, 0xb7, 0x22, 0xe2, 0x6e, 0x04, 0x30, 0x37, 0x00, 0x6c, 0x1a, 0x1a, 0x99,
|
|
0x17, 0x79, 0xc3, 0xa6, 0xa1, 0xd8, 0x7e, 0x1b, 0x9a, 0x42, 0x86, 0x4d, 0x7c, 0xcc, 0x83, 0x5d,
|
|
0xd7, 0x21, 0x22, 0x0d, 0x88, 0xcf, 0xfb, 0x74, 0xf6, 0x3d, 0xdf, 0xad, 0xf1, 0xdd, 0x9a, 0x4d,
|
|
0x43, 0xbe, 0x75, 0x03, 0xe0, 0xb9, 0xe9, 0x3a, 0x36, 0x4f, 0x52, 0x1e, 0xa6, 0xba, 0xde, 0xe0,
|
|
0x14, 0xe6, 0x02, 0xed, 0xcf, 0x0a, 0xa0, 0x94, 0x77, 0xce, 0x8f, 0x9d, 0xb7, 0xa1, 0x93, 0x39,
|
|
0x67, 0x32, 0xed, 0x4c, 0x1f, 0x94, 0x32, 0xf0, 0x1f, 0x45, 0xaa, 0x8c, 0x00, 0x9b, 0x94, 0xf8,
|
|
0xdc, 0x69, 0x0b, 0x83, 0xff, 0x28, 0x36, 0x93, 0x7d, 0xba, 0xfe, 0x12, 0x3a, 0xd9, 0x32, 0x45,
|
|
0x2d, 0xa8, 0xef, 0x92, 0xf0, 0xd3, 0x17, 0x0e, 0x0d, 0xd5, 0x25, 0xd4, 0x01, 0xd8, 0x25, 0xe1,
|
|
0x5e, 0x80, 0x29, 0xf6, 0x43, 0x55, 0x41, 0x00, 0xd5, 0xc7, 0xfe, 0xc0, 0xa1, 0x5f, 0xa8, 0x25,
|
|
0x74, 0x55, 0x3c, 0x9e, 0x4d, 0x77, 0x28, 0x72, 0x56, 0x2d, 0xb3, 0xcf, 0x93, 0x55, 0x05, 0xa9,
|
|
0xd0, 0x4a, 0x58, 0x76, 0xf6, 0x7e, 0xa8, 0x2e, 0xa3, 0x06, 0x2c, 0x47, 0x3f, 0xab, 0xeb, 0x8f,
|
|
0x41, 0xcd, 0x9b, 0x87, 0x9a, 0x50, 0x3b, 0x8a, 0x52, 0x5d, 0x5d, 0x42, 0x5d, 0x68, 0xba, 0x33,
|
|
0xc7, 0xaa, 0x0a, 0x23, 0x8c, 0x83, 0x89, 0x25, 0x5c, 0xac, 0x96, 0x98, 0x36, 0xe6, 0xab, 0x01,
|
|
0x39, 0xf6, 0xd5, 0xf2, 0xfa, 0xf7, 0xa0, 0x95, 0x7e, 0xd0, 0xa0, 0x3a, 0x54, 0x76, 0x89, 0x8f,
|
|
0xd5, 0x25, 0x26, 0x76, 0x27, 0x20, 0xc7, 0x8e, 0x3f, 0x8e, 0xce, 0xf0, 0x30, 0x20, 0x2f, 0xb1,
|
|
0xaf, 0x96, 0xd8, 0x06, 0xc5, 0xa6, 0xcb, 0x36, 0xca, 0x6c, 0x83, 0x2d, 0xb0, 0xad, 0x56, 0xd6,
|
|
0x3f, 0x82, 0x7a, 0x0c, 0x17, 0xe8, 0x0a, 0xb4, 0x33, 0xa3, 0x37, 0x75, 0x09, 0xa1, 0xe8, 0x06,
|
|
0x9e, 0x01, 0x83, 0xaa, 0x6c, 0xfd, 0x1b, 0x00, 0xa2, 0x1b, 0x81, 0x90, 0xc0, 0x46, 0x13, 0x40,
|
|
0x3b, 0x38, 0xdc, 0x26, 0xde, 0x84, 0xf8, 0xb1, 0x49, 0x14, 0x7d, 0x98, 0x8d, 0x52, 0x32, 0xe7,
|
|
0x2f, 0xb2, 0x8a, 0x53, 0xf6, 0xdf, 0x9d, 0xf3, 0x45, 0x8e, 0x5d, 0x5b, 0x42, 0x1e, 0xd7, 0xc8,
|
|
0x1a, 0xac, 0x03, 0xc7, 0xfa, 0x22, 0x9e, 0xdb, 0x9c, 0xa2, 0x31, 0xc7, 0x1a, 0x6b, 0xcc, 0x61,
|
|
0x83, 0x58, 0xec, 0x87, 0x81, 0xe3, 0x8f, 0xe3, 0x47, 0xa0, 0xb6, 0x84, 0x9e, 0xc1, 0x35, 0xf6,
|
|
0x40, 0x0c, 0xcd, 0xd0, 0xa1, 0xa1, 0x63, 0xd1, 0x58, 0xe1, 0xd6, 0x7c, 0x85, 0x05, 0xe6, 0x57,
|
|
0x54, 0xe9, 0x42, 0x37, 0xf7, 0xff, 0x02, 0x5a, 0x97, 0x02, 0x99, 0xf4, 0xbf, 0x90, 0xfe, 0xfb,
|
|
0x0b, 0xf1, 0x26, 0xda, 0x1c, 0xe8, 0x64, 0x67, 0xef, 0xe8, 0xbd, 0x79, 0x02, 0x0a, 0xc3, 0xca,
|
|
0xfe, 0xfa, 0x22, 0xac, 0x89, 0xaa, 0x27, 0xd0, 0xc9, 0x4e, 0x77, 0xe5, 0xaa, 0xa4, 0x13, 0xe0,
|
|
0xfe, 0x69, 0xef, 0x6f, 0x6d, 0x09, 0xfd, 0x04, 0xae, 0x14, 0x46, 0xaa, 0xe8, 0x9b, 0x32, 0xf1,
|
|
0xf3, 0x26, 0xaf, 0x67, 0x69, 0x10, 0xd6, 0xcf, 0xbc, 0x38, 0xdf, 0xfa, 0xc2, 0x6c, 0x7d, 0x71,
|
|
0xeb, 0x53, 0xe2, 0x4f, 0xb3, 0xfe, 0x95, 0x35, 0x4c, 0x01, 0x15, 0x87, 0xaa, 0xe8, 0x03, 0x99,
|
|
0x8a, 0xb9, 0x83, 0xdd, 0xfe, 0xc6, 0xa2, 0xec, 0x49, 0xc8, 0xa7, 0xbc, 0x5a, 0xf3, 0xe3, 0x47,
|
|
0xa9, 0xda, 0xb9, 0xf3, 0x54, 0xb9, 0xda, 0xf9, 0x13, 0xc3, 0x28, 0xa9, 0xb3, 0x63, 0x1d, 0x79,
|
|
0xac, 0xa4, 0x63, 0x3c, 0x79, 0x52, 0xcb, 0xa7, 0x44, 0xda, 0x12, 0x32, 0x00, 0x76, 0x70, 0xf8,
|
|
0x08, 0x87, 0x81, 0x63, 0x51, 0xf4, 0xae, 0xb4, 0xc4, 0x67, 0x0c, 0xb1, 0x8e, 0x3b, 0x67, 0xf2,
|
|
0xc5, 0x0a, 0xb6, 0xfe, 0xd2, 0x80, 0x06, 0xf7, 0x2e, 0xbb, 0x1b, 0xff, 0x0f, 0xb8, 0x97, 0x00,
|
|
0xb8, 0x4f, 0xa1, 0x9b, 0x9b, 0xbe, 0xc9, 0x01, 0x57, 0x3e, 0xa2, 0x3b, 0xab, 0xf2, 0x46, 0x80,
|
|
0x8a, 0xa3, 0x2f, 0x79, 0x09, 0xcc, 0x1d, 0x91, 0x9d, 0xa5, 0xe3, 0x29, 0x74, 0x73, 0xa3, 0x27,
|
|
0xf9, 0x09, 0xe4, 0xf3, 0xa9, 0xb3, 0xa4, 0x7f, 0x0e, 0xad, 0xf4, 0x90, 0x01, 0xdd, 0x99, 0x87,
|
|
0x7b, 0xb9, 0xa7, 0xf5, 0xeb, 0x47, 0xbd, 0xcb, 0xbf, 0x15, 0x9e, 0x42, 0x37, 0x37, 0x57, 0x90,
|
|
0x7b, 0x5e, 0x3e, 0x7c, 0x38, 0x4b, 0xfa, 0x57, 0x08, 0xc7, 0x1e, 0x7c, 0xfc, 0x64, 0x6b, 0xec,
|
|
0x84, 0x47, 0xd3, 0x11, 0x3b, 0xe5, 0x66, 0xc4, 0xf9, 0x81, 0x43, 0xc4, 0xaf, 0xcd, 0xb8, 0xa0,
|
|
0x37, 0xb9, 0xa4, 0x4d, 0x6e, 0xed, 0x64, 0x34, 0xaa, 0xf2, 0xe5, 0xbd, 0xff, 0x04, 0x00, 0x00,
|
|
0xff, 0xff, 0x70, 0xb6, 0x53, 0xcf, 0x70, 0x22, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
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
|
|
|
|
// QueryCoordClient is the client API for QueryCoord service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type QueryCoordClient interface {
|
|
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)
|
|
LoadCollection(ctx context.Context, in *LoadCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
CreateQueryChannel(ctx context.Context, in *CreateQueryChannelRequest, opts ...grpc.CallOption) (*CreateQueryChannelResponse, error)
|
|
GetPartitionStates(ctx context.Context, in *GetPartitionStatesRequest, opts ...grpc.CallOption) (*GetPartitionStatesResponse, error)
|
|
GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error)
|
|
// 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)
|
|
}
|
|
|
|
type queryCoordClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewQueryCoordClient(cc *grpc.ClientConn) QueryCoordClient {
|
|
return &queryCoordClient{cc}
|
|
}
|
|
|
|
func (c *queryCoordClient) 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.QueryCoord/GetComponentStates", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetTimeTickChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) 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.QueryCoord/GetStatisticsChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) ShowCollections(ctx context.Context, in *ShowCollectionsRequest, opts ...grpc.CallOption) (*ShowCollectionsResponse, error) {
|
|
out := new(ShowCollectionsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ShowCollections", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) ShowPartitions(ctx context.Context, in *ShowPartitionsRequest, opts ...grpc.CallOption) (*ShowPartitionsResponse, error) {
|
|
out := new(ShowPartitionsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ShowPartitions", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) LoadPartitions(ctx context.Context, in *LoadPartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/LoadPartitions", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ReleasePartitions", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) LoadCollection(ctx context.Context, in *LoadCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/LoadCollection", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/ReleaseCollection", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) CreateQueryChannel(ctx context.Context, in *CreateQueryChannelRequest, opts ...grpc.CallOption) (*CreateQueryChannelResponse, error) {
|
|
out := new(CreateQueryChannelResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/CreateQueryChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) GetPartitionStates(ctx context.Context, in *GetPartitionStatesRequest, opts ...grpc.CallOption) (*GetPartitionStatesResponse, error) {
|
|
out := new(GetPartitionStatesResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetPartitionStates", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryCoordClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error) {
|
|
out := new(GetSegmentInfoResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryCoord/GetSegmentInfo", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
// QueryCoordServer is the server API for QueryCoord service.
|
|
type QueryCoordServer interface {
|
|
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)
|
|
LoadCollection(context.Context, *LoadCollectionRequest) (*commonpb.Status, error)
|
|
ReleaseCollection(context.Context, *ReleaseCollectionRequest) (*commonpb.Status, error)
|
|
CreateQueryChannel(context.Context, *CreateQueryChannelRequest) (*CreateQueryChannelResponse, error)
|
|
GetPartitionStates(context.Context, *GetPartitionStatesRequest) (*GetPartitionStatesResponse, error)
|
|
GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
|
|
}
|
|
|
|
// UnimplementedQueryCoordServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedQueryCoordServer struct {
|
|
}
|
|
|
|
func (*UnimplementedQueryCoordServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetTimeTickChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) ShowCollections(ctx context.Context, req *ShowCollectionsRequest) (*ShowCollectionsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ShowCollections not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) ShowPartitions(ctx context.Context, req *ShowPartitionsRequest) (*ShowPartitionsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ShowPartitions not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) LoadPartitions(ctx context.Context, req *LoadPartitionsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method LoadPartitions not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) ReleasePartitions(ctx context.Context, req *ReleasePartitionsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReleasePartitions not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) LoadCollection(ctx context.Context, req *LoadCollectionRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method LoadCollection not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) ReleaseCollection(ctx context.Context, req *ReleaseCollectionRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReleaseCollection not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) CreateQueryChannel(ctx context.Context, req *CreateQueryChannelRequest) (*CreateQueryChannelResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CreateQueryChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) GetPartitionStates(ctx context.Context, req *GetPartitionStatesRequest) (*GetPartitionStatesResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetPartitionStates not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
|
|
}
|
|
func (*UnimplementedQueryCoordServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
|
|
}
|
|
|
|
func RegisterQueryCoordServer(s *grpc.Server, srv QueryCoordServer) {
|
|
s.RegisterService(&_QueryCoord_serviceDesc, srv)
|
|
}
|
|
|
|
func _QueryCoord_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetComponentStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).GetComponentStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/GetComponentStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_GetTimeTickChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetTimeTickChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).GetTimeTickChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/GetTimeTickChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).GetTimeTickChannel(ctx, req.(*internalpb.GetTimeTickChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetStatisticsChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).GetStatisticsChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/GetStatisticsChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_ShowCollections_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ShowCollectionsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).ShowCollections(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/ShowCollections",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).ShowCollections(ctx, req.(*ShowCollectionsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_ShowPartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ShowPartitionsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).ShowPartitions(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/ShowPartitions",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).ShowPartitions(ctx, req.(*ShowPartitionsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_LoadPartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoadPartitionsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).LoadPartitions(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/LoadPartitions",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).LoadPartitions(ctx, req.(*LoadPartitionsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_ReleasePartitions_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReleasePartitionsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).ReleasePartitions(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/ReleasePartitions",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).ReleasePartitions(ctx, req.(*ReleasePartitionsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_LoadCollection_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoadCollectionRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).LoadCollection(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/LoadCollection",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).LoadCollection(ctx, req.(*LoadCollectionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_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.(QueryCoordServer).ReleaseCollection(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/ReleaseCollection",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).ReleaseCollection(ctx, req.(*ReleaseCollectionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_CreateQueryChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CreateQueryChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).CreateQueryChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/CreateQueryChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).CreateQueryChannel(ctx, req.(*CreateQueryChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_GetPartitionStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetPartitionStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).GetPartitionStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/GetPartitionStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).GetPartitionStates(ctx, req.(*GetPartitionStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryCoord_GetSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetSegmentInfoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryCoordServer).GetSegmentInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryCoord/GetSegmentInfo",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryCoordServer).GetSegmentInfo(ctx, req.(*GetSegmentInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
var _QueryCoord_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "milvus.proto.query.QueryCoord",
|
|
HandlerType: (*QueryCoordServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetComponentStates",
|
|
Handler: _QueryCoord_GetComponentStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetTimeTickChannel",
|
|
Handler: _QueryCoord_GetTimeTickChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetStatisticsChannel",
|
|
Handler: _QueryCoord_GetStatisticsChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "ShowCollections",
|
|
Handler: _QueryCoord_ShowCollections_Handler,
|
|
},
|
|
{
|
|
MethodName: "ShowPartitions",
|
|
Handler: _QueryCoord_ShowPartitions_Handler,
|
|
},
|
|
{
|
|
MethodName: "LoadPartitions",
|
|
Handler: _QueryCoord_LoadPartitions_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReleasePartitions",
|
|
Handler: _QueryCoord_ReleasePartitions_Handler,
|
|
},
|
|
{
|
|
MethodName: "LoadCollection",
|
|
Handler: _QueryCoord_LoadCollection_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReleaseCollection",
|
|
Handler: _QueryCoord_ReleaseCollection_Handler,
|
|
},
|
|
{
|
|
MethodName: "CreateQueryChannel",
|
|
Handler: _QueryCoord_CreateQueryChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPartitionStates",
|
|
Handler: _QueryCoord_GetPartitionStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetSegmentInfo",
|
|
Handler: _QueryCoord_GetSegmentInfo_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMetrics",
|
|
Handler: _QueryCoord_GetMetrics_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "query_coord.proto",
|
|
}
|
|
|
|
// 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 {
|
|
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)
|
|
AddQueryChannel(ctx context.Context, in *AddQueryChannelRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
RemoveQueryChannel(ctx context.Context, in *RemoveQueryChannelRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
WatchDmChannels(ctx context.Context, in *WatchDmChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
LoadSegments(ctx context.Context, in *LoadSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
ReleaseCollection(ctx context.Context, in *ReleaseCollectionRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
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)
|
|
// 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)
|
|
}
|
|
|
|
type queryNodeClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewQueryNodeClient(cc *grpc.ClientConn) QueryNodeClient {
|
|
return &queryNodeClient{cc}
|
|
}
|
|
|
|
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...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryNodeClient) GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetTimeTickChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
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...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryNodeClient) AddQueryChannel(ctx context.Context, in *AddQueryChannelRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/AddQueryChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *queryNodeClient) RemoveQueryChannel(ctx context.Context, in *RemoveQueryChannelRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/RemoveQueryChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (c *queryNodeClient) LoadSegments(ctx context.Context, in *LoadSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
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
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
func (c *queryNodeClient) ReleasePartitions(ctx context.Context, in *ReleasePartitionsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
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
|
|
}
|
|
|
|
func (c *queryNodeClient) ReleaseSegments(ctx context.Context, in *ReleaseSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
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
|
|
}
|
|
|
|
func (c *queryNodeClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error) {
|
|
out := new(GetSegmentInfoResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.query.QueryNode/GetSegmentInfo", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
// QueryNodeServer is the server API for QueryNode service.
|
|
type QueryNodeServer interface {
|
|
GetComponentStates(context.Context, *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error)
|
|
GetTimeTickChannel(context.Context, *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error)
|
|
GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
|
|
AddQueryChannel(context.Context, *AddQueryChannelRequest) (*commonpb.Status, error)
|
|
RemoveQueryChannel(context.Context, *RemoveQueryChannelRequest) (*commonpb.Status, error)
|
|
WatchDmChannels(context.Context, *WatchDmChannelsRequest) (*commonpb.Status, error)
|
|
LoadSegments(context.Context, *LoadSegmentsRequest) (*commonpb.Status, error)
|
|
ReleaseCollection(context.Context, *ReleaseCollectionRequest) (*commonpb.Status, error)
|
|
ReleasePartitions(context.Context, *ReleasePartitionsRequest) (*commonpb.Status, error)
|
|
ReleaseSegments(context.Context, *ReleaseSegmentsRequest) (*commonpb.Status, error)
|
|
GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
|
|
}
|
|
|
|
// UnimplementedQueryNodeServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedQueryNodeServer struct {
|
|
}
|
|
|
|
func (*UnimplementedQueryNodeServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetTimeTickChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) AddQueryChannel(ctx context.Context, req *AddQueryChannelRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AddQueryChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) RemoveQueryChannel(ctx context.Context, req *RemoveQueryChannelRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method RemoveQueryChannel not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) WatchDmChannels(ctx context.Context, req *WatchDmChannelsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method WatchDmChannels not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) LoadSegments(ctx context.Context, req *LoadSegmentsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method LoadSegments not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) ReleaseCollection(ctx context.Context, req *ReleaseCollectionRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReleaseCollection not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) ReleasePartitions(ctx context.Context, req *ReleasePartitionsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReleasePartitions not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) ReleaseSegments(ctx context.Context, req *ReleaseSegmentsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ReleaseSegments not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
|
|
}
|
|
func (*UnimplementedQueryNodeServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
|
|
}
|
|
|
|
func RegisterQueryNodeServer(s *grpc.Server, srv QueryNodeServer) {
|
|
s.RegisterService(&_QueryNode_serviceDesc, srv)
|
|
}
|
|
|
|
func _QueryNode_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetComponentStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryNodeServer).GetComponentStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryNode/GetComponentStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryNodeServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_GetTimeTickChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetTimeTickChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryNodeServer).GetTimeTickChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryNode/GetTimeTickChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryNodeServer).GetTimeTickChannel(ctx, req.(*internalpb.GetTimeTickChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetStatisticsChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryNodeServer).GetStatisticsChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryNode/GetStatisticsChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryNodeServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_AddQueryChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AddQueryChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryNodeServer).AddQueryChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryNode/AddQueryChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryNodeServer).AddQueryChannel(ctx, req.(*AddQueryChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_RemoveQueryChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(RemoveQueryChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(QueryNodeServer).RemoveQueryChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.query.QueryNode/RemoveQueryChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(QueryNodeServer).RemoveQueryChannel(ctx, req.(*RemoveQueryChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
func _QueryNode_LoadSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(LoadSegmentsRequest)
|
|
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) {
|
|
return srv.(QueryNodeServer).LoadSegments(ctx, req.(*LoadSegmentsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
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) {
|
|
in := new(ReleasePartitionsRequest)
|
|
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) {
|
|
return srv.(QueryNodeServer).ReleasePartitions(ctx, req.(*ReleasePartitionsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_ReleaseSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(ReleaseSegmentsRequest)
|
|
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) {
|
|
return srv.(QueryNodeServer).ReleaseSegments(ctx, req.(*ReleaseSegmentsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _QueryNode_GetSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetSegmentInfoRequest)
|
|
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) {
|
|
return srv.(QueryNodeServer).GetSegmentInfo(ctx, req.(*GetSegmentInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
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)
|
|
}
|
|
|
|
var _QueryNode_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "milvus.proto.query.QueryNode",
|
|
HandlerType: (*QueryNodeServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetComponentStates",
|
|
Handler: _QueryNode_GetComponentStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetTimeTickChannel",
|
|
Handler: _QueryNode_GetTimeTickChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetStatisticsChannel",
|
|
Handler: _QueryNode_GetStatisticsChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "AddQueryChannel",
|
|
Handler: _QueryNode_AddQueryChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "RemoveQueryChannel",
|
|
Handler: _QueryNode_RemoveQueryChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "WatchDmChannels",
|
|
Handler: _QueryNode_WatchDmChannels_Handler,
|
|
},
|
|
{
|
|
MethodName: "LoadSegments",
|
|
Handler: _QueryNode_LoadSegments_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReleaseCollection",
|
|
Handler: _QueryNode_ReleaseCollection_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReleasePartitions",
|
|
Handler: _QueryNode_ReleasePartitions_Handler,
|
|
},
|
|
{
|
|
MethodName: "ReleaseSegments",
|
|
Handler: _QueryNode_ReleaseSegments_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetSegmentInfo",
|
|
Handler: _QueryNode_GetSegmentInfo_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMetrics",
|
|
Handler: _QueryNode_GetMetrics_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "query_coord.proto",
|
|
}
|