mirror of
https://gitee.com/milvus-io/milvus.git
synced 2025-12-07 17:48:29 +08:00
2773 lines
96 KiB
Go
2773 lines
96 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: internal_msg.proto
|
|
|
|
package internalpb
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
commonpb "github.com/zilliztech/milvus-distributed/internal/proto/commonpb"
|
|
servicepb "github.com/zilliztech/milvus-distributed/internal/proto/servicepb"
|
|
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 MsgType int32
|
|
|
|
const (
|
|
MsgType_kNone MsgType = 0
|
|
// Definition Requests: collection
|
|
MsgType_kCreateCollection MsgType = 100
|
|
MsgType_kDropCollection MsgType = 101
|
|
MsgType_kHasCollection MsgType = 102
|
|
MsgType_kDescribeCollection MsgType = 103
|
|
MsgType_kShowCollections MsgType = 104
|
|
MsgType_kGetSysConfigs MsgType = 105
|
|
// Definition Requests: partition
|
|
MsgType_kCreatePartition MsgType = 200
|
|
MsgType_kDropPartition MsgType = 201
|
|
MsgType_kHasPartition MsgType = 202
|
|
MsgType_kDescribePartition MsgType = 203
|
|
MsgType_kShowPartitions MsgType = 204
|
|
// Definition Requests: Index
|
|
MsgType_kCreateIndex MsgType = 300
|
|
MsgType_kDescribeIndex MsgType = 301
|
|
MsgType_kDescribeIndexProgress MsgType = 302
|
|
// Manipulation Requests
|
|
MsgType_kInsert MsgType = 400
|
|
MsgType_kDelete MsgType = 401
|
|
MsgType_kFlush MsgType = 402
|
|
// Query
|
|
MsgType_kSearch MsgType = 500
|
|
MsgType_kSearchResult MsgType = 501
|
|
// System Control
|
|
MsgType_kTimeTick MsgType = 1200
|
|
MsgType_kQueryNodeStats MsgType = 1201
|
|
MsgType_kLoadIndex MsgType = 1202
|
|
)
|
|
|
|
var MsgType_name = map[int32]string{
|
|
0: "kNone",
|
|
100: "kCreateCollection",
|
|
101: "kDropCollection",
|
|
102: "kHasCollection",
|
|
103: "kDescribeCollection",
|
|
104: "kShowCollections",
|
|
105: "kGetSysConfigs",
|
|
200: "kCreatePartition",
|
|
201: "kDropPartition",
|
|
202: "kHasPartition",
|
|
203: "kDescribePartition",
|
|
204: "kShowPartitions",
|
|
300: "kCreateIndex",
|
|
301: "kDescribeIndex",
|
|
302: "kDescribeIndexProgress",
|
|
400: "kInsert",
|
|
401: "kDelete",
|
|
402: "kFlush",
|
|
500: "kSearch",
|
|
501: "kSearchResult",
|
|
1200: "kTimeTick",
|
|
1201: "kQueryNodeStats",
|
|
1202: "kLoadIndex",
|
|
}
|
|
|
|
var MsgType_value = map[string]int32{
|
|
"kNone": 0,
|
|
"kCreateCollection": 100,
|
|
"kDropCollection": 101,
|
|
"kHasCollection": 102,
|
|
"kDescribeCollection": 103,
|
|
"kShowCollections": 104,
|
|
"kGetSysConfigs": 105,
|
|
"kCreatePartition": 200,
|
|
"kDropPartition": 201,
|
|
"kHasPartition": 202,
|
|
"kDescribePartition": 203,
|
|
"kShowPartitions": 204,
|
|
"kCreateIndex": 300,
|
|
"kDescribeIndex": 301,
|
|
"kDescribeIndexProgress": 302,
|
|
"kInsert": 400,
|
|
"kDelete": 401,
|
|
"kFlush": 402,
|
|
"kSearch": 500,
|
|
"kSearchResult": 501,
|
|
"kTimeTick": 1200,
|
|
"kQueryNodeStats": 1201,
|
|
"kLoadIndex": 1202,
|
|
}
|
|
|
|
func (x MsgType) String() string {
|
|
return proto.EnumName(MsgType_name, int32(x))
|
|
}
|
|
|
|
func (MsgType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{0}
|
|
}
|
|
|
|
type PeerRole int32
|
|
|
|
const (
|
|
PeerRole_Master PeerRole = 0
|
|
PeerRole_Reader PeerRole = 1
|
|
PeerRole_Writer PeerRole = 2
|
|
PeerRole_Proxy PeerRole = 3
|
|
)
|
|
|
|
var PeerRole_name = map[int32]string{
|
|
0: "Master",
|
|
1: "Reader",
|
|
2: "Writer",
|
|
3: "Proxy",
|
|
}
|
|
|
|
var PeerRole_value = map[string]int32{
|
|
"Master": 0,
|
|
"Reader": 1,
|
|
"Writer": 2,
|
|
"Proxy": 3,
|
|
}
|
|
|
|
func (x PeerRole) String() string {
|
|
return proto.EnumName(PeerRole_name, int32(x))
|
|
}
|
|
|
|
func (PeerRole) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{1}
|
|
}
|
|
|
|
type IDRequest struct {
|
|
PeerID int64 `protobuf:"varint,1,opt,name=peerID,proto3" json:"peerID,omitempty"`
|
|
Role PeerRole `protobuf:"varint,2,opt,name=role,proto3,enum=milvus.proto.internal.PeerRole" json:"role,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IDRequest) Reset() { *m = IDRequest{} }
|
|
func (m *IDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*IDRequest) ProtoMessage() {}
|
|
func (*IDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{0}
|
|
}
|
|
|
|
func (m *IDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *IDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IDRequest.Merge(m, src)
|
|
}
|
|
func (m *IDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_IDRequest.Size(m)
|
|
}
|
|
func (m *IDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IDRequest proto.InternalMessageInfo
|
|
|
|
func (m *IDRequest) GetPeerID() int64 {
|
|
if m != nil {
|
|
return m.PeerID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IDRequest) GetRole() PeerRole {
|
|
if m != nil {
|
|
return m.Role
|
|
}
|
|
return PeerRole_Master
|
|
}
|
|
|
|
func (m *IDRequest) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type IDResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
ID int64 `protobuf:"varint,2,opt,name=ID,proto3" json:"ID,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IDResponse) Reset() { *m = IDResponse{} }
|
|
func (m *IDResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*IDResponse) ProtoMessage() {}
|
|
func (*IDResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{1}
|
|
}
|
|
|
|
func (m *IDResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IDResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *IDResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IDResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IDResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IDResponse.Merge(m, src)
|
|
}
|
|
func (m *IDResponse) XXX_Size() int {
|
|
return xxx_messageInfo_IDResponse.Size(m)
|
|
}
|
|
func (m *IDResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IDResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IDResponse proto.InternalMessageInfo
|
|
|
|
func (m *IDResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IDResponse) GetID() int64 {
|
|
if m != nil {
|
|
return m.ID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *IDResponse) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type TsoRequest struct {
|
|
PeerID int64 `protobuf:"varint,1,opt,name=peerID,proto3" json:"peerID,omitempty"`
|
|
Role PeerRole `protobuf:"varint,2,opt,name=role,proto3,enum=milvus.proto.internal.PeerRole" json:"role,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *TsoRequest) Reset() { *m = TsoRequest{} }
|
|
func (m *TsoRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*TsoRequest) ProtoMessage() {}
|
|
func (*TsoRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{2}
|
|
}
|
|
|
|
func (m *TsoRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_TsoRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *TsoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_TsoRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *TsoRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TsoRequest.Merge(m, src)
|
|
}
|
|
func (m *TsoRequest) XXX_Size() int {
|
|
return xxx_messageInfo_TsoRequest.Size(m)
|
|
}
|
|
func (m *TsoRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TsoRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TsoRequest proto.InternalMessageInfo
|
|
|
|
func (m *TsoRequest) GetPeerID() int64 {
|
|
if m != nil {
|
|
return m.PeerID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TsoRequest) GetRole() PeerRole {
|
|
if m != nil {
|
|
return m.Role
|
|
}
|
|
return PeerRole_Master
|
|
}
|
|
|
|
func (m *TsoRequest) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type TsoResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *TsoResponse) Reset() { *m = TsoResponse{} }
|
|
func (m *TsoResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*TsoResponse) ProtoMessage() {}
|
|
func (*TsoResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{3}
|
|
}
|
|
|
|
func (m *TsoResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_TsoResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *TsoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_TsoResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *TsoResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TsoResponse.Merge(m, src)
|
|
}
|
|
func (m *TsoResponse) XXX_Size() int {
|
|
return xxx_messageInfo_TsoResponse.Size(m)
|
|
}
|
|
func (m *TsoResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TsoResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TsoResponse proto.InternalMessageInfo
|
|
|
|
func (m *TsoResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TsoResponse) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TsoResponse) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type SegIDRequest struct {
|
|
Count uint32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
ChannelID int32 `protobuf:"varint,2,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
CollName string `protobuf:"bytes,3,opt,name=coll_name,json=collName,proto3" json:"coll_name,omitempty"`
|
|
PartitionTag string `protobuf:"bytes,4,opt,name=partition_tag,json=partitionTag,proto3" json:"partition_tag,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegIDRequest) Reset() { *m = SegIDRequest{} }
|
|
func (m *SegIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SegIDRequest) ProtoMessage() {}
|
|
func (*SegIDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{4}
|
|
}
|
|
|
|
func (m *SegIDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegIDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SegIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegIDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegIDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegIDRequest.Merge(m, src)
|
|
}
|
|
func (m *SegIDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SegIDRequest.Size(m)
|
|
}
|
|
func (m *SegIDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegIDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegIDRequest proto.InternalMessageInfo
|
|
|
|
func (m *SegIDRequest) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDRequest) GetChannelID() int32 {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDRequest) GetCollName() string {
|
|
if m != nil {
|
|
return m.CollName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegIDRequest) GetPartitionTag() string {
|
|
if m != nil {
|
|
return m.PartitionTag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type AssignSegIDRequest struct {
|
|
PeerID int64 `protobuf:"varint,1,opt,name=peerID,proto3" json:"peerID,omitempty"`
|
|
Role PeerRole `protobuf:"varint,2,opt,name=role,proto3,enum=milvus.proto.internal.PeerRole" json:"role,omitempty"`
|
|
PerChannelReq []*SegIDRequest `protobuf:"bytes,3,rep,name=per_channel_req,json=perChannelReq,proto3" json:"per_channel_req,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AssignSegIDRequest) Reset() { *m = AssignSegIDRequest{} }
|
|
func (m *AssignSegIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignSegIDRequest) ProtoMessage() {}
|
|
func (*AssignSegIDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{5}
|
|
}
|
|
|
|
func (m *AssignSegIDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AssignSegIDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AssignSegIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AssignSegIDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AssignSegIDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AssignSegIDRequest.Merge(m, src)
|
|
}
|
|
func (m *AssignSegIDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AssignSegIDRequest.Size(m)
|
|
}
|
|
func (m *AssignSegIDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AssignSegIDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AssignSegIDRequest proto.InternalMessageInfo
|
|
|
|
func (m *AssignSegIDRequest) GetPeerID() int64 {
|
|
if m != nil {
|
|
return m.PeerID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AssignSegIDRequest) GetRole() PeerRole {
|
|
if m != nil {
|
|
return m.Role
|
|
}
|
|
return PeerRole_Master
|
|
}
|
|
|
|
func (m *AssignSegIDRequest) GetPerChannelReq() []*SegIDRequest {
|
|
if m != nil {
|
|
return m.PerChannelReq
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegIDAssignment struct {
|
|
SegID int64 `protobuf:"varint,1,opt,name=segID,proto3" json:"segID,omitempty"`
|
|
ChannelID int32 `protobuf:"varint,2,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
CollName string `protobuf:"bytes,4,opt,name=coll_name,json=collName,proto3" json:"coll_name,omitempty"`
|
|
PartitionTag string `protobuf:"bytes,5,opt,name=partition_tag,json=partitionTag,proto3" json:"partition_tag,omitempty"`
|
|
ExpireTime uint64 `protobuf:"varint,6,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegIDAssignment) Reset() { *m = SegIDAssignment{} }
|
|
func (m *SegIDAssignment) String() string { return proto.CompactTextString(m) }
|
|
func (*SegIDAssignment) ProtoMessage() {}
|
|
func (*SegIDAssignment) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{6}
|
|
}
|
|
|
|
func (m *SegIDAssignment) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegIDAssignment.Unmarshal(m, b)
|
|
}
|
|
func (m *SegIDAssignment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegIDAssignment.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegIDAssignment) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegIDAssignment.Merge(m, src)
|
|
}
|
|
func (m *SegIDAssignment) XXX_Size() int {
|
|
return xxx_messageInfo_SegIDAssignment.Size(m)
|
|
}
|
|
func (m *SegIDAssignment) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegIDAssignment.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegIDAssignment proto.InternalMessageInfo
|
|
|
|
func (m *SegIDAssignment) GetSegID() int64 {
|
|
if m != nil {
|
|
return m.SegID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetChannelID() int32 {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetCollName() string {
|
|
if m != nil {
|
|
return m.CollName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetPartitionTag() string {
|
|
if m != nil {
|
|
return m.PartitionTag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetExpireTime() uint64 {
|
|
if m != nil {
|
|
return m.ExpireTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegIDAssignment) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AssignSegIDResponse struct {
|
|
PerChannelAssignment []*SegIDAssignment `protobuf:"bytes,1,rep,name=per_channel_assignment,json=perChannelAssignment,proto3" json:"per_channel_assignment,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AssignSegIDResponse) Reset() { *m = AssignSegIDResponse{} }
|
|
func (m *AssignSegIDResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignSegIDResponse) ProtoMessage() {}
|
|
func (*AssignSegIDResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{7}
|
|
}
|
|
|
|
func (m *AssignSegIDResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AssignSegIDResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *AssignSegIDResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AssignSegIDResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AssignSegIDResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AssignSegIDResponse.Merge(m, src)
|
|
}
|
|
func (m *AssignSegIDResponse) XXX_Size() int {
|
|
return xxx_messageInfo_AssignSegIDResponse.Size(m)
|
|
}
|
|
func (m *AssignSegIDResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AssignSegIDResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AssignSegIDResponse proto.InternalMessageInfo
|
|
|
|
func (m *AssignSegIDResponse) GetPerChannelAssignment() []*SegIDAssignment {
|
|
if m != nil {
|
|
return m.PerChannelAssignment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CreateCollectionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
ReqID int64 `protobuf:"varint,3,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,5,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
Schema *commonpb.Blob `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) Reset() { *m = CreateCollectionRequest{} }
|
|
func (m *CreateCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateCollectionRequest) ProtoMessage() {}
|
|
func (*CreateCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{8}
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateCollectionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateCollectionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateCollectionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateCollectionRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateCollectionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateCollectionRequest.Size(m)
|
|
}
|
|
func (m *CreateCollectionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateCollectionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateCollectionRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateCollectionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetSchema() *commonpb.Blob {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DropCollectionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
ReqID int64 `protobuf:"varint,3,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,5,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName *servicepb.CollectionName `protobuf:"bytes,6,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DropCollectionRequest) Reset() { *m = DropCollectionRequest{} }
|
|
func (m *DropCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DropCollectionRequest) ProtoMessage() {}
|
|
func (*DropCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{9}
|
|
}
|
|
|
|
func (m *DropCollectionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DropCollectionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DropCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DropCollectionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DropCollectionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DropCollectionRequest.Merge(m, src)
|
|
}
|
|
func (m *DropCollectionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DropCollectionRequest.Size(m)
|
|
}
|
|
func (m *DropCollectionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DropCollectionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DropCollectionRequest proto.InternalMessageInfo
|
|
|
|
func (m *DropCollectionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetCollectionName() *servicepb.CollectionName {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HasCollectionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName *servicepb.CollectionName `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HasCollectionRequest) Reset() { *m = HasCollectionRequest{} }
|
|
func (m *HasCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HasCollectionRequest) ProtoMessage() {}
|
|
func (*HasCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{10}
|
|
}
|
|
|
|
func (m *HasCollectionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HasCollectionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *HasCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HasCollectionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HasCollectionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HasCollectionRequest.Merge(m, src)
|
|
}
|
|
func (m *HasCollectionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_HasCollectionRequest.Size(m)
|
|
}
|
|
func (m *HasCollectionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HasCollectionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HasCollectionRequest proto.InternalMessageInfo
|
|
|
|
func (m *HasCollectionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *HasCollectionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasCollectionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasCollectionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasCollectionRequest) GetCollectionName() *servicepb.CollectionName {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DescribeCollectionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName *servicepb.CollectionName `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) Reset() { *m = DescribeCollectionRequest{} }
|
|
func (m *DescribeCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DescribeCollectionRequest) ProtoMessage() {}
|
|
func (*DescribeCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{11}
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DescribeCollectionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DescribeCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DescribeCollectionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DescribeCollectionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DescribeCollectionRequest.Merge(m, src)
|
|
}
|
|
func (m *DescribeCollectionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DescribeCollectionRequest.Size(m)
|
|
}
|
|
func (m *DescribeCollectionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DescribeCollectionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DescribeCollectionRequest proto.InternalMessageInfo
|
|
|
|
func (m *DescribeCollectionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) GetCollectionName() *servicepb.CollectionName {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ShowCollectionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) Reset() { *m = ShowCollectionRequest{} }
|
|
func (m *ShowCollectionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ShowCollectionRequest) ProtoMessage() {}
|
|
func (*ShowCollectionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{12}
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ShowCollectionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ShowCollectionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ShowCollectionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ShowCollectionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ShowCollectionRequest.Merge(m, src)
|
|
}
|
|
func (m *ShowCollectionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ShowCollectionRequest.Size(m)
|
|
}
|
|
func (m *ShowCollectionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ShowCollectionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ShowCollectionRequest proto.InternalMessageInfo
|
|
|
|
func (m *ShowCollectionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreatePartitionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,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"`
|
|
ReqID int64 `protobuf:"varint,4,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,6,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
PartitionName *servicepb.PartitionName `protobuf:"bytes,7,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) Reset() { *m = CreatePartitionRequest{} }
|
|
func (m *CreatePartitionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreatePartitionRequest) ProtoMessage() {}
|
|
func (*CreatePartitionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{13}
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreatePartitionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreatePartitionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreatePartitionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreatePartitionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreatePartitionRequest.Merge(m, src)
|
|
}
|
|
func (m *CreatePartitionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreatePartitionRequest.Size(m)
|
|
}
|
|
func (m *CreatePartitionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreatePartitionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreatePartitionRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreatePartitionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetPartitionName() *servicepb.PartitionName {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DropPartitionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,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"`
|
|
ReqID int64 `protobuf:"varint,4,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,6,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
PartitionName *servicepb.PartitionName `protobuf:"bytes,7,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DropPartitionRequest) Reset() { *m = DropPartitionRequest{} }
|
|
func (m *DropPartitionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DropPartitionRequest) ProtoMessage() {}
|
|
func (*DropPartitionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{14}
|
|
}
|
|
|
|
func (m *DropPartitionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DropPartitionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DropPartitionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DropPartitionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DropPartitionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DropPartitionRequest.Merge(m, src)
|
|
}
|
|
func (m *DropPartitionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DropPartitionRequest.Size(m)
|
|
}
|
|
func (m *DropPartitionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DropPartitionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DropPartitionRequest proto.InternalMessageInfo
|
|
|
|
func (m *DropPartitionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetPartitionName() *servicepb.PartitionName {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type HasPartitionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
PartitionName *servicepb.PartitionName `protobuf:"bytes,5,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *HasPartitionRequest) Reset() { *m = HasPartitionRequest{} }
|
|
func (m *HasPartitionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*HasPartitionRequest) ProtoMessage() {}
|
|
func (*HasPartitionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{15}
|
|
}
|
|
|
|
func (m *HasPartitionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_HasPartitionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *HasPartitionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_HasPartitionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *HasPartitionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_HasPartitionRequest.Merge(m, src)
|
|
}
|
|
func (m *HasPartitionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_HasPartitionRequest.Size(m)
|
|
}
|
|
func (m *HasPartitionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_HasPartitionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_HasPartitionRequest proto.InternalMessageInfo
|
|
|
|
func (m *HasPartitionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *HasPartitionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasPartitionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasPartitionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *HasPartitionRequest) GetPartitionName() *servicepb.PartitionName {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DescribePartitionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
PartitionName *servicepb.PartitionName `protobuf:"bytes,5,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) Reset() { *m = DescribePartitionRequest{} }
|
|
func (m *DescribePartitionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DescribePartitionRequest) ProtoMessage() {}
|
|
func (*DescribePartitionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{16}
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DescribePartitionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DescribePartitionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DescribePartitionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DescribePartitionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DescribePartitionRequest.Merge(m, src)
|
|
}
|
|
func (m *DescribePartitionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DescribePartitionRequest.Size(m)
|
|
}
|
|
func (m *DescribePartitionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DescribePartitionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DescribePartitionRequest proto.InternalMessageInfo
|
|
|
|
func (m *DescribePartitionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) GetPartitionName() *servicepb.PartitionName {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ShowPartitionRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName *servicepb.CollectionName `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) Reset() { *m = ShowPartitionRequest{} }
|
|
func (m *ShowPartitionRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*ShowPartitionRequest) ProtoMessage() {}
|
|
func (*ShowPartitionRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{17}
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ShowPartitionRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *ShowPartitionRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ShowPartitionRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ShowPartitionRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ShowPartitionRequest.Merge(m, src)
|
|
}
|
|
func (m *ShowPartitionRequest) XXX_Size() int {
|
|
return xxx_messageInfo_ShowPartitionRequest.Size(m)
|
|
}
|
|
func (m *ShowPartitionRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ShowPartitionRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ShowPartitionRequest proto.InternalMessageInfo
|
|
|
|
func (m *ShowPartitionRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) GetCollectionName() *servicepb.CollectionName {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type InsertRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
PartitionTag string `protobuf:"bytes,4,opt,name=partition_tag,json=partitionTag,proto3" json:"partition_tag,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,5,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
ChannelID int64 `protobuf:"varint,6,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,7,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
Timestamps []uint64 `protobuf:"varint,8,rep,packed,name=timestamps,proto3" json:"timestamps,omitempty"`
|
|
RowIDs []int64 `protobuf:"varint,9,rep,packed,name=rowIDs,proto3" json:"rowIDs,omitempty"`
|
|
RowData []*commonpb.Blob `protobuf:"bytes,10,rep,name=row_data,json=rowData,proto3" json:"row_data,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *InsertRequest) Reset() { *m = InsertRequest{} }
|
|
func (m *InsertRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*InsertRequest) ProtoMessage() {}
|
|
func (*InsertRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{18}
|
|
}
|
|
|
|
func (m *InsertRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_InsertRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *InsertRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_InsertRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *InsertRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_InsertRequest.Merge(m, src)
|
|
}
|
|
func (m *InsertRequest) XXX_Size() int {
|
|
return xxx_messageInfo_InsertRequest.Size(m)
|
|
}
|
|
func (m *InsertRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_InsertRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_InsertRequest proto.InternalMessageInfo
|
|
|
|
func (m *InsertRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *InsertRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InsertRequest) GetPartitionTag() string {
|
|
if m != nil {
|
|
return m.PartitionTag
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InsertRequest) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetChannelID() int64 {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetTimestamps() []uint64 {
|
|
if m != nil {
|
|
return m.Timestamps
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *InsertRequest) GetRowIDs() []int64 {
|
|
if m != nil {
|
|
return m.RowIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *InsertRequest) GetRowData() []*commonpb.Blob {
|
|
if m != nil {
|
|
return m.RowData
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
ChannelID int64 `protobuf:"varint,4,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,5,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
Timestamps []uint64 `protobuf:"varint,6,rep,packed,name=timestamps,proto3" json:"timestamps,omitempty"`
|
|
PrimaryKeys []int64 `protobuf:"varint,7,rep,packed,name=primary_keys,json=primaryKeys,proto3" json:"primary_keys,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeleteRequest) Reset() { *m = DeleteRequest{} }
|
|
func (m *DeleteRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DeleteRequest) ProtoMessage() {}
|
|
func (*DeleteRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{19}
|
|
}
|
|
|
|
func (m *DeleteRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeleteRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DeleteRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeleteRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeleteRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeleteRequest.Merge(m, src)
|
|
}
|
|
func (m *DeleteRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DeleteRequest.Size(m)
|
|
}
|
|
func (m *DeleteRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeleteRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeleteRequest proto.InternalMessageInfo
|
|
|
|
func (m *DeleteRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DeleteRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetChannelID() int64 {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetTimestamps() []uint64 {
|
|
if m != nil {
|
|
return m.Timestamps
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DeleteRequest) GetPrimaryKeys() []int64 {
|
|
if m != nil {
|
|
return m.PrimaryKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SearchRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,3,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ResultChannelID int64 `protobuf:"varint,5,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
Query *commonpb.Blob `protobuf:"bytes,6,opt,name=query,proto3" json:"query,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SearchRequest) Reset() { *m = SearchRequest{} }
|
|
func (m *SearchRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SearchRequest) ProtoMessage() {}
|
|
func (*SearchRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{20}
|
|
}
|
|
|
|
func (m *SearchRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SearchRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SearchRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SearchRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SearchRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SearchRequest.Merge(m, src)
|
|
}
|
|
func (m *SearchRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SearchRequest.Size(m)
|
|
}
|
|
func (m *SearchRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SearchRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SearchRequest proto.InternalMessageInfo
|
|
|
|
func (m *SearchRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *SearchRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetResultChannelID() int64 {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetQuery() *commonpb.Blob {
|
|
if m != nil {
|
|
return m.Query
|
|
}
|
|
return nil
|
|
}
|
|
|
|
//*
|
|
// @brief Request of DescribePartition
|
|
type SysConfigRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,3,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
Keys []string `protobuf:"bytes,5,rep,name=keys,proto3" json:"keys,omitempty"`
|
|
KeyPrefixes []string `protobuf:"bytes,6,rep,name=key_prefixes,json=keyPrefixes,proto3" json:"key_prefixes,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SysConfigRequest) Reset() { *m = SysConfigRequest{} }
|
|
func (m *SysConfigRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SysConfigRequest) ProtoMessage() {}
|
|
func (*SysConfigRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{21}
|
|
}
|
|
|
|
func (m *SysConfigRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SysConfigRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SysConfigRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SysConfigRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SysConfigRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SysConfigRequest.Merge(m, src)
|
|
}
|
|
func (m *SysConfigRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SysConfigRequest.Size(m)
|
|
}
|
|
func (m *SysConfigRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SysConfigRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SysConfigRequest proto.InternalMessageInfo
|
|
|
|
func (m *SysConfigRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *SysConfigRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SysConfigRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SysConfigRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SysConfigRequest) GetKeys() []string {
|
|
if m != nil {
|
|
return m.Keys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SysConfigRequest) GetKeyPrefixes() []string {
|
|
if m != nil {
|
|
return m.KeyPrefixes
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SearchResult struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
|
|
ReqID int64 `protobuf:"varint,3,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
QueryNodeID int64 `protobuf:"varint,5,opt,name=query_nodeID,json=queryNodeID,proto3" json:"query_nodeID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ResultChannelID int64 `protobuf:"varint,7,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
Hits [][]byte `protobuf:"bytes,8,rep,name=hits,proto3" json:"hits,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SearchResult) Reset() { *m = SearchResult{} }
|
|
func (m *SearchResult) String() string { return proto.CompactTextString(m) }
|
|
func (*SearchResult) ProtoMessage() {}
|
|
func (*SearchResult) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{22}
|
|
}
|
|
|
|
func (m *SearchResult) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SearchResult.Unmarshal(m, b)
|
|
}
|
|
func (m *SearchResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SearchResult.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SearchResult) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SearchResult.Merge(m, src)
|
|
}
|
|
func (m *SearchResult) XXX_Size() int {
|
|
return xxx_messageInfo_SearchResult.Size(m)
|
|
}
|
|
func (m *SearchResult) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SearchResult.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SearchResult proto.InternalMessageInfo
|
|
|
|
func (m *SearchResult) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *SearchResult) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResult) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetQueryNodeID() int64 {
|
|
if m != nil {
|
|
return m.QueryNodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetResultChannelID() int64 {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetHits() [][]byte {
|
|
if m != nil {
|
|
return m.Hits
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type TimeTickMsg struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
PeerID int64 `protobuf:"varint,2,opt,name=peerID,proto3" json:"peerID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *TimeTickMsg) Reset() { *m = TimeTickMsg{} }
|
|
func (m *TimeTickMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*TimeTickMsg) ProtoMessage() {}
|
|
func (*TimeTickMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{23}
|
|
}
|
|
|
|
func (m *TimeTickMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_TimeTickMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *TimeTickMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_TimeTickMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *TimeTickMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TimeTickMsg.Merge(m, src)
|
|
}
|
|
func (m *TimeTickMsg) XXX_Size() int {
|
|
return xxx_messageInfo_TimeTickMsg.Size(m)
|
|
}
|
|
func (m *TimeTickMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TimeTickMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TimeTickMsg proto.InternalMessageInfo
|
|
|
|
func (m *TimeTickMsg) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *TimeTickMsg) GetPeerID() int64 {
|
|
if m != nil {
|
|
return m.PeerID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TimeTickMsg) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type FlushMsg struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FlushMsg) Reset() { *m = FlushMsg{} }
|
|
func (m *FlushMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*FlushMsg) ProtoMessage() {}
|
|
func (*FlushMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{24}
|
|
}
|
|
|
|
func (m *FlushMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FlushMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *FlushMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FlushMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FlushMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FlushMsg.Merge(m, src)
|
|
}
|
|
func (m *FlushMsg) XXX_Size() int {
|
|
return xxx_messageInfo_FlushMsg.Size(m)
|
|
}
|
|
func (m *FlushMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FlushMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FlushMsg proto.InternalMessageInfo
|
|
|
|
func (m *FlushMsg) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *FlushMsg) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushMsg) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Key2Seg struct {
|
|
RowID int64 `protobuf:"varint,1,opt,name=rowID,proto3" json:"rowID,omitempty"`
|
|
PrimaryKey int64 `protobuf:"varint,2,opt,name=primary_key,json=primaryKey,proto3" json:"primary_key,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
IsValid bool `protobuf:"varint,4,opt,name=is_valid,json=isValid,proto3" json:"is_valid,omitempty"`
|
|
SegmentIDs []int64 `protobuf:"varint,5,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Key2Seg) Reset() { *m = Key2Seg{} }
|
|
func (m *Key2Seg) String() string { return proto.CompactTextString(m) }
|
|
func (*Key2Seg) ProtoMessage() {}
|
|
func (*Key2Seg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{25}
|
|
}
|
|
|
|
func (m *Key2Seg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Key2Seg.Unmarshal(m, b)
|
|
}
|
|
func (m *Key2Seg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Key2Seg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Key2Seg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Key2Seg.Merge(m, src)
|
|
}
|
|
func (m *Key2Seg) XXX_Size() int {
|
|
return xxx_messageInfo_Key2Seg.Size(m)
|
|
}
|
|
func (m *Key2Seg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Key2Seg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Key2Seg proto.InternalMessageInfo
|
|
|
|
func (m *Key2Seg) GetRowID() int64 {
|
|
if m != nil {
|
|
return m.RowID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Key2Seg) GetPrimaryKey() int64 {
|
|
if m != nil {
|
|
return m.PrimaryKey
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Key2Seg) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Key2Seg) GetIsValid() bool {
|
|
if m != nil {
|
|
return m.IsValid
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *Key2Seg) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Key2SegMsg struct {
|
|
ReqID int64 `protobuf:"varint,1,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Key2Seg []*Key2Seg `protobuf:"bytes,2,rep,name=key2seg,proto3" json:"key2seg,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Key2SegMsg) Reset() { *m = Key2SegMsg{} }
|
|
func (m *Key2SegMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*Key2SegMsg) ProtoMessage() {}
|
|
func (*Key2SegMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{26}
|
|
}
|
|
|
|
func (m *Key2SegMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Key2SegMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *Key2SegMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Key2SegMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Key2SegMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Key2SegMsg.Merge(m, src)
|
|
}
|
|
func (m *Key2SegMsg) XXX_Size() int {
|
|
return xxx_messageInfo_Key2SegMsg.Size(m)
|
|
}
|
|
func (m *Key2SegMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Key2SegMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Key2SegMsg proto.InternalMessageInfo
|
|
|
|
func (m *Key2SegMsg) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Key2SegMsg) GetKey2Seg() []*Key2Seg {
|
|
if m != nil {
|
|
return m.Key2Seg
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type LoadIndex struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
FieldName string `protobuf:"bytes,3,opt,name=fieldName,proto3" json:"fieldName,omitempty"`
|
|
FieldID int64 `protobuf:"varint,4,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
|
IndexPaths []string `protobuf:"bytes,5,rep,name=index_paths,json=indexPaths,proto3" json:"index_paths,omitempty"`
|
|
IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,6,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *LoadIndex) Reset() { *m = LoadIndex{} }
|
|
func (m *LoadIndex) String() string { return proto.CompactTextString(m) }
|
|
func (*LoadIndex) ProtoMessage() {}
|
|
func (*LoadIndex) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{27}
|
|
}
|
|
|
|
func (m *LoadIndex) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_LoadIndex.Unmarshal(m, b)
|
|
}
|
|
func (m *LoadIndex) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_LoadIndex.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *LoadIndex) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_LoadIndex.Merge(m, src)
|
|
}
|
|
func (m *LoadIndex) XXX_Size() int {
|
|
return xxx_messageInfo_LoadIndex.Size(m)
|
|
}
|
|
func (m *LoadIndex) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_LoadIndex.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_LoadIndex proto.InternalMessageInfo
|
|
|
|
func (m *LoadIndex) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *LoadIndex) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadIndex) GetFieldName() string {
|
|
if m != nil {
|
|
return m.FieldName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *LoadIndex) GetFieldID() int64 {
|
|
if m != nil {
|
|
return m.FieldID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *LoadIndex) GetIndexPaths() []string {
|
|
if m != nil {
|
|
return m.IndexPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *LoadIndex) GetIndexParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.IndexParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type IndexStats struct {
|
|
IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
|
|
NumRelatedSegments int64 `protobuf:"varint,2,opt,name=num_related_segments,json=numRelatedSegments,proto3" json:"num_related_segments,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *IndexStats) Reset() { *m = IndexStats{} }
|
|
func (m *IndexStats) String() string { return proto.CompactTextString(m) }
|
|
func (*IndexStats) ProtoMessage() {}
|
|
func (*IndexStats) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{28}
|
|
}
|
|
|
|
func (m *IndexStats) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_IndexStats.Unmarshal(m, b)
|
|
}
|
|
func (m *IndexStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_IndexStats.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *IndexStats) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_IndexStats.Merge(m, src)
|
|
}
|
|
func (m *IndexStats) XXX_Size() int {
|
|
return xxx_messageInfo_IndexStats.Size(m)
|
|
}
|
|
func (m *IndexStats) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_IndexStats.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_IndexStats proto.InternalMessageInfo
|
|
|
|
func (m *IndexStats) GetIndexParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.IndexParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *IndexStats) GetNumRelatedSegments() int64 {
|
|
if m != nil {
|
|
return m.NumRelatedSegments
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type FieldStats struct {
|
|
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
FieldID int64 `protobuf:"varint,2,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
|
IndexStats []*IndexStats `protobuf:"bytes,3,rep,name=index_stats,json=indexStats,proto3" json:"index_stats,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FieldStats) Reset() { *m = FieldStats{} }
|
|
func (m *FieldStats) String() string { return proto.CompactTextString(m) }
|
|
func (*FieldStats) ProtoMessage() {}
|
|
func (*FieldStats) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{29}
|
|
}
|
|
|
|
func (m *FieldStats) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FieldStats.Unmarshal(m, b)
|
|
}
|
|
func (m *FieldStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FieldStats.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FieldStats) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FieldStats.Merge(m, src)
|
|
}
|
|
func (m *FieldStats) XXX_Size() int {
|
|
return xxx_messageInfo_FieldStats.Size(m)
|
|
}
|
|
func (m *FieldStats) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FieldStats.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FieldStats proto.InternalMessageInfo
|
|
|
|
func (m *FieldStats) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FieldStats) GetFieldID() int64 {
|
|
if m != nil {
|
|
return m.FieldID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FieldStats) GetIndexStats() []*IndexStats {
|
|
if m != nil {
|
|
return m.IndexStats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentStats struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
MemorySize int64 `protobuf:"varint,2,opt,name=memory_size,json=memorySize,proto3" json:"memory_size,omitempty"`
|
|
NumRows int64 `protobuf:"varint,3,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
|
|
RecentlyModified bool `protobuf:"varint,4,opt,name=recently_modified,json=recentlyModified,proto3" json:"recently_modified,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentStats) Reset() { *m = SegmentStats{} }
|
|
func (m *SegmentStats) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentStats) ProtoMessage() {}
|
|
func (*SegmentStats) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{30}
|
|
}
|
|
|
|
func (m *SegmentStats) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentStats.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentStats.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentStats) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentStats.Merge(m, src)
|
|
}
|
|
func (m *SegmentStats) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentStats.Size(m)
|
|
}
|
|
func (m *SegmentStats) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentStats.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentStats proto.InternalMessageInfo
|
|
|
|
func (m *SegmentStats) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStats) GetMemorySize() int64 {
|
|
if m != nil {
|
|
return m.MemorySize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStats) GetNumRows() int64 {
|
|
if m != nil {
|
|
return m.NumRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStats) GetRecentlyModified() bool {
|
|
if m != nil {
|
|
return m.RecentlyModified
|
|
}
|
|
return false
|
|
}
|
|
|
|
type QueryNodeStats struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
PeerID int64 `protobuf:"varint,2,opt,name=peerID,proto3" json:"peerID,omitempty"`
|
|
SegStats []*SegmentStats `protobuf:"bytes,3,rep,name=seg_stats,json=segStats,proto3" json:"seg_stats,omitempty"`
|
|
FieldStats []*FieldStats `protobuf:"bytes,4,rep,name=field_stats,json=fieldStats,proto3" json:"field_stats,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *QueryNodeStats) Reset() { *m = QueryNodeStats{} }
|
|
func (m *QueryNodeStats) String() string { return proto.CompactTextString(m) }
|
|
func (*QueryNodeStats) ProtoMessage() {}
|
|
func (*QueryNodeStats) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{31}
|
|
}
|
|
|
|
func (m *QueryNodeStats) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_QueryNodeStats.Unmarshal(m, b)
|
|
}
|
|
func (m *QueryNodeStats) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_QueryNodeStats.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *QueryNodeStats) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_QueryNodeStats.Merge(m, src)
|
|
}
|
|
func (m *QueryNodeStats) XXX_Size() int {
|
|
return xxx_messageInfo_QueryNodeStats.Size(m)
|
|
}
|
|
func (m *QueryNodeStats) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_QueryNodeStats.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_QueryNodeStats proto.InternalMessageInfo
|
|
|
|
func (m *QueryNodeStats) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *QueryNodeStats) GetPeerID() int64 {
|
|
if m != nil {
|
|
return m.PeerID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *QueryNodeStats) GetSegStats() []*SegmentStats {
|
|
if m != nil {
|
|
return m.SegStats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *QueryNodeStats) GetFieldStats() []*FieldStats {
|
|
if m != nil {
|
|
return m.FieldStats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CreateIndexRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
|
|
ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CreateIndexRequest) Reset() { *m = CreateIndexRequest{} }
|
|
func (m *CreateIndexRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*CreateIndexRequest) ProtoMessage() {}
|
|
func (*CreateIndexRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{32}
|
|
}
|
|
|
|
func (m *CreateIndexRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CreateIndexRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *CreateIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CreateIndexRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CreateIndexRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CreateIndexRequest.Merge(m, src)
|
|
}
|
|
func (m *CreateIndexRequest) XXX_Size() int {
|
|
return xxx_messageInfo_CreateIndexRequest.Size(m)
|
|
}
|
|
func (m *CreateIndexRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CreateIndexRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CreateIndexRequest proto.InternalMessageInfo
|
|
|
|
func (m *CreateIndexRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetFieldName() string {
|
|
if m != nil {
|
|
return m.FieldName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetExtraParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.ExtraParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DescribeIndexRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
|
|
ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) Reset() { *m = DescribeIndexRequest{} }
|
|
func (m *DescribeIndexRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DescribeIndexRequest) ProtoMessage() {}
|
|
func (*DescribeIndexRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{33}
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DescribeIndexRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DescribeIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DescribeIndexRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DescribeIndexRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DescribeIndexRequest.Merge(m, src)
|
|
}
|
|
func (m *DescribeIndexRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DescribeIndexRequest.Size(m)
|
|
}
|
|
func (m *DescribeIndexRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DescribeIndexRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DescribeIndexRequest proto.InternalMessageInfo
|
|
|
|
func (m *DescribeIndexRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetFieldName() string {
|
|
if m != nil {
|
|
return m.FieldName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DescribeIndexRequest) GetExtraParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.ExtraParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DescribeIndexProgressRequest struct {
|
|
MsgType MsgType `protobuf:"varint,1,opt,name=msg_type,json=msgType,proto3,enum=milvus.proto.internal.MsgType" json:"msg_type,omitempty"`
|
|
ReqID int64 `protobuf:"varint,2,opt,name=reqID,proto3" json:"reqID,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyID int64 `protobuf:"varint,4,opt,name=proxyID,proto3" json:"proxyID,omitempty"`
|
|
CollectionName string `protobuf:"bytes,5,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
FieldName string `protobuf:"bytes,6,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
|
|
ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=extra_params,json=extraParams,proto3" json:"extra_params,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) Reset() { *m = DescribeIndexProgressRequest{} }
|
|
func (m *DescribeIndexProgressRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DescribeIndexProgressRequest) ProtoMessage() {}
|
|
func (*DescribeIndexProgressRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{34}
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DescribeIndexProgressRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DescribeIndexProgressRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DescribeIndexProgressRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DescribeIndexProgressRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DescribeIndexProgressRequest.Merge(m, src)
|
|
}
|
|
func (m *DescribeIndexProgressRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DescribeIndexProgressRequest.Size(m)
|
|
}
|
|
func (m *DescribeIndexProgressRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DescribeIndexProgressRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DescribeIndexProgressRequest proto.InternalMessageInfo
|
|
|
|
func (m *DescribeIndexProgressRequest) GetMsgType() MsgType {
|
|
if m != nil {
|
|
return m.MsgType
|
|
}
|
|
return MsgType_kNone
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetReqID() int64 {
|
|
if m != nil {
|
|
return m.ReqID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetProxyID() int64 {
|
|
if m != nil {
|
|
return m.ProxyID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetFieldName() string {
|
|
if m != nil {
|
|
return m.FieldName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DescribeIndexProgressRequest) GetExtraParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.ExtraParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("milvus.proto.internal.MsgType", MsgType_name, MsgType_value)
|
|
proto.RegisterEnum("milvus.proto.internal.PeerRole", PeerRole_name, PeerRole_value)
|
|
proto.RegisterType((*IDRequest)(nil), "milvus.proto.internal.IDRequest")
|
|
proto.RegisterType((*IDResponse)(nil), "milvus.proto.internal.IDResponse")
|
|
proto.RegisterType((*TsoRequest)(nil), "milvus.proto.internal.TsoRequest")
|
|
proto.RegisterType((*TsoResponse)(nil), "milvus.proto.internal.TsoResponse")
|
|
proto.RegisterType((*SegIDRequest)(nil), "milvus.proto.internal.SegIDRequest")
|
|
proto.RegisterType((*AssignSegIDRequest)(nil), "milvus.proto.internal.AssignSegIDRequest")
|
|
proto.RegisterType((*SegIDAssignment)(nil), "milvus.proto.internal.SegIDAssignment")
|
|
proto.RegisterType((*AssignSegIDResponse)(nil), "milvus.proto.internal.AssignSegIDResponse")
|
|
proto.RegisterType((*CreateCollectionRequest)(nil), "milvus.proto.internal.CreateCollectionRequest")
|
|
proto.RegisterType((*DropCollectionRequest)(nil), "milvus.proto.internal.DropCollectionRequest")
|
|
proto.RegisterType((*HasCollectionRequest)(nil), "milvus.proto.internal.HasCollectionRequest")
|
|
proto.RegisterType((*DescribeCollectionRequest)(nil), "milvus.proto.internal.DescribeCollectionRequest")
|
|
proto.RegisterType((*ShowCollectionRequest)(nil), "milvus.proto.internal.ShowCollectionRequest")
|
|
proto.RegisterType((*CreatePartitionRequest)(nil), "milvus.proto.internal.CreatePartitionRequest")
|
|
proto.RegisterType((*DropPartitionRequest)(nil), "milvus.proto.internal.DropPartitionRequest")
|
|
proto.RegisterType((*HasPartitionRequest)(nil), "milvus.proto.internal.HasPartitionRequest")
|
|
proto.RegisterType((*DescribePartitionRequest)(nil), "milvus.proto.internal.DescribePartitionRequest")
|
|
proto.RegisterType((*ShowPartitionRequest)(nil), "milvus.proto.internal.ShowPartitionRequest")
|
|
proto.RegisterType((*InsertRequest)(nil), "milvus.proto.internal.InsertRequest")
|
|
proto.RegisterType((*DeleteRequest)(nil), "milvus.proto.internal.DeleteRequest")
|
|
proto.RegisterType((*SearchRequest)(nil), "milvus.proto.internal.SearchRequest")
|
|
proto.RegisterType((*SysConfigRequest)(nil), "milvus.proto.internal.SysConfigRequest")
|
|
proto.RegisterType((*SearchResult)(nil), "milvus.proto.internal.SearchResult")
|
|
proto.RegisterType((*TimeTickMsg)(nil), "milvus.proto.internal.TimeTickMsg")
|
|
proto.RegisterType((*FlushMsg)(nil), "milvus.proto.internal.FlushMsg")
|
|
proto.RegisterType((*Key2Seg)(nil), "milvus.proto.internal.Key2Seg")
|
|
proto.RegisterType((*Key2SegMsg)(nil), "milvus.proto.internal.Key2SegMsg")
|
|
proto.RegisterType((*LoadIndex)(nil), "milvus.proto.internal.LoadIndex")
|
|
proto.RegisterType((*IndexStats)(nil), "milvus.proto.internal.IndexStats")
|
|
proto.RegisterType((*FieldStats)(nil), "milvus.proto.internal.FieldStats")
|
|
proto.RegisterType((*SegmentStats)(nil), "milvus.proto.internal.SegmentStats")
|
|
proto.RegisterType((*QueryNodeStats)(nil), "milvus.proto.internal.QueryNodeStats")
|
|
proto.RegisterType((*CreateIndexRequest)(nil), "milvus.proto.internal.CreateIndexRequest")
|
|
proto.RegisterType((*DescribeIndexRequest)(nil), "milvus.proto.internal.DescribeIndexRequest")
|
|
proto.RegisterType((*DescribeIndexProgressRequest)(nil), "milvus.proto.internal.DescribeIndexProgressRequest")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("internal_msg.proto", fileDescriptor_7eb37f6b80b23116) }
|
|
|
|
var fileDescriptor_7eb37f6b80b23116 = []byte{
|
|
// 1837 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x59, 0xcd, 0x6f, 0x23, 0x49,
|
|
0x15, 0xdf, 0xee, 0xf6, 0x47, 0xfc, 0xec, 0x38, 0x3d, 0x95, 0x64, 0xc6, 0xb3, 0xb3, 0xec, 0x64,
|
|
0x7a, 0x10, 0x1b, 0x16, 0x91, 0x40, 0x86, 0x03, 0x7b, 0x83, 0xc4, 0x5a, 0xd6, 0x0c, 0x19, 0x85,
|
|
0x4e, 0xb4, 0x48, 0x68, 0xa5, 0x56, 0xc7, 0x7e, 0xb1, 0x4b, 0xfd, 0xe5, 0x54, 0xb5, 0x27, 0xf1,
|
|
0x1c, 0x90, 0x10, 0x73, 0x46, 0x7c, 0x88, 0x03, 0x37, 0xee, 0xb0, 0x23, 0x16, 0xc4, 0xff, 0xc0,
|
|
0xe7, 0x85, 0xff, 0x02, 0x0e, 0x20, 0xb1, 0xcb, 0x81, 0x1b, 0xaa, 0xaa, 0xfe, 0x70, 0x27, 0xb6,
|
|
0x13, 0x6d, 0x32, 0xcb, 0xa0, 0x9d, 0x5b, 0xbd, 0xe7, 0xea, 0xaa, 0xf7, 0x7e, 0xef, 0xa3, 0xde,
|
|
0x7b, 0x06, 0x42, 0xc3, 0x18, 0x59, 0xe8, 0xfa, 0x4e, 0xc0, 0xfb, 0x1b, 0x43, 0x16, 0xc5, 0x11,
|
|
0x59, 0x0d, 0xa8, 0xff, 0x78, 0xc4, 0x15, 0xb5, 0x91, 0x6e, 0x78, 0xb5, 0xd1, 0x8d, 0x82, 0x20,
|
|
0x0a, 0x15, 0xfb, 0xd5, 0x1b, 0x1c, 0xd9, 0x63, 0xda, 0xc5, 0xfc, 0x3b, 0x2b, 0x84, 0x5a, 0xa7,
|
|
0x6d, 0xe3, 0xf1, 0x08, 0x79, 0x4c, 0x6e, 0x42, 0x65, 0x88, 0xc8, 0x3a, 0xed, 0x96, 0xb6, 0xa6,
|
|
0xad, 0x1b, 0x76, 0x42, 0x91, 0x07, 0x50, 0x62, 0x91, 0x8f, 0x2d, 0x7d, 0x4d, 0x5b, 0x6f, 0x6e,
|
|
0xdd, 0xdd, 0x98, 0x7a, 0xd7, 0xc6, 0x1e, 0x22, 0xb3, 0x23, 0x1f, 0x6d, 0xb9, 0x99, 0xac, 0x40,
|
|
0xb9, 0x1b, 0x8d, 0xc2, 0xb8, 0x65, 0xac, 0x69, 0xeb, 0x8b, 0xb6, 0x22, 0xac, 0x3e, 0x80, 0xb8,
|
|
0x8f, 0x0f, 0xa3, 0x90, 0x23, 0x79, 0x00, 0x15, 0x1e, 0xbb, 0xf1, 0x88, 0xcb, 0x0b, 0xeb, 0x5b,
|
|
0x77, 0x8a, 0x47, 0x27, 0xc2, 0xef, 0xcb, 0x2d, 0x76, 0xb2, 0x95, 0x34, 0x41, 0xef, 0xb4, 0xa5,
|
|
0x2c, 0x86, 0xad, 0x77, 0xda, 0x33, 0x2e, 0x8a, 0x00, 0x0e, 0x78, 0xf4, 0x09, 0x6a, 0xf6, 0x18,
|
|
0xea, 0xf2, 0xc2, 0xab, 0xa8, 0xf6, 0x1a, 0xd4, 0x62, 0x1a, 0x20, 0x8f, 0xdd, 0x60, 0x28, 0x65,
|
|
0x2a, 0xd9, 0x39, 0x63, 0xc6, 0xbd, 0x4f, 0x35, 0x68, 0xec, 0x63, 0x3f, 0xb7, 0x62, 0xb6, 0x4d,
|
|
0x9b, 0xd8, 0x26, 0x8e, 0xee, 0x0e, 0xdc, 0x30, 0x44, 0x3f, 0x01, 0xaf, 0x6c, 0xe7, 0x0c, 0x72,
|
|
0x07, 0x6a, 0xdd, 0xc8, 0xf7, 0x9d, 0xd0, 0x0d, 0x50, 0x1e, 0x5f, 0xb3, 0x17, 0x04, 0xe3, 0x91,
|
|
0x1b, 0x20, 0xb9, 0x0f, 0x8b, 0x43, 0x97, 0xc5, 0x34, 0xa6, 0x51, 0xe8, 0xc4, 0x6e, 0xbf, 0x55,
|
|
0x92, 0x1b, 0x1a, 0x19, 0xf3, 0xc0, 0xed, 0x5b, 0xcf, 0x34, 0x20, 0x5f, 0xe7, 0x9c, 0xf6, 0xc3,
|
|
0x82, 0x30, 0xd7, 0x0a, 0xfc, 0x43, 0x58, 0x1a, 0x22, 0x73, 0x12, 0xb1, 0x1d, 0x86, 0xc7, 0x2d,
|
|
0x63, 0xcd, 0x58, 0xaf, 0x6f, 0xdd, 0x9f, 0xf1, 0xfd, 0xa4, 0x28, 0xf6, 0xe2, 0x10, 0xd9, 0x8e,
|
|
0xfa, 0xd4, 0xc6, 0x63, 0xeb, 0x43, 0x0d, 0x96, 0xe4, 0xef, 0x4a, 0xea, 0x00, 0x43, 0x09, 0x1d,
|
|
0x17, 0xac, 0x44, 0x58, 0x45, 0x5c, 0x00, 0xdd, 0x54, 0xab, 0x14, 0x01, 0x2d, 0x5d, 0x04, 0x68,
|
|
0xf9, 0x3c, 0xa0, 0xe4, 0x2e, 0xd4, 0xf1, 0x74, 0x48, 0x19, 0x3a, 0xc2, 0x03, 0x5a, 0x15, 0xe9,
|
|
0x0d, 0xa0, 0x58, 0x07, 0x34, 0x98, 0xf4, 0xb0, 0xea, 0xa5, 0x3d, 0xcc, 0xe2, 0xb0, 0x5c, 0xb0,
|
|
0x52, 0xe2, 0xad, 0xef, 0xc1, 0xcd, 0x49, 0x64, 0xdd, 0x0c, 0x92, 0x96, 0x26, 0x01, 0xfe, 0xdc,
|
|
0x3c, 0x80, 0x73, 0x00, 0xed, 0x95, 0x1c, 0xe3, 0x9c, 0x6b, 0xfd, 0x47, 0x83, 0x5b, 0x3b, 0x0c,
|
|
0xdd, 0x18, 0x77, 0x22, 0xdf, 0xc7, 0xae, 0x50, 0x31, 0x75, 0x90, 0xb7, 0x60, 0x21, 0xe0, 0x7d,
|
|
0x27, 0x1e, 0x0f, 0x51, 0xa2, 0xde, 0xdc, 0x7a, 0x7d, 0xc6, 0x5d, 0xbb, 0xbc, 0x7f, 0x30, 0x1e,
|
|
0xa2, 0x5d, 0x0d, 0xd4, 0x82, 0x58, 0xd0, 0xe8, 0x66, 0xe7, 0x65, 0x29, 0xa1, 0xc0, 0x13, 0xd6,
|
|
0x61, 0x78, 0xdc, 0x69, 0x4b, 0xeb, 0x18, 0xb6, 0x22, 0x8a, 0x71, 0x56, 0x3a, 0x1b, 0x67, 0x2d,
|
|
0xa8, 0x0e, 0x59, 0x74, 0x3a, 0xee, 0xb4, 0xa5, 0x61, 0x0c, 0x3b, 0x25, 0xc9, 0x97, 0xa1, 0xc2,
|
|
0xbb, 0x03, 0x0c, 0x5c, 0x69, 0x8e, 0xfa, 0xd6, 0xed, 0xa9, 0x90, 0x6f, 0xfb, 0xd1, 0xa1, 0x9d,
|
|
0x6c, 0xb4, 0x7e, 0xaa, 0xc3, 0x6a, 0x9b, 0x45, 0xc3, 0xff, 0x73, 0xcd, 0x77, 0x61, 0x29, 0x3f,
|
|
0x5d, 0x79, 0xb5, 0x82, 0xe0, 0xb3, 0x45, 0x99, 0x93, 0x17, 0x66, 0x23, 0x57, 0x57, 0x78, 0xbc,
|
|
0xdd, 0xec, 0x16, 0x68, 0xeb, 0x1f, 0x1a, 0xac, 0xbc, 0xe3, 0xf2, 0x6b, 0x05, 0x25, 0x53, 0x58,
|
|
0x9f, 0xa9, 0xb0, 0x31, 0x47, 0xe1, 0xd2, 0x85, 0x0a, 0x97, 0xaf, 0xa0, 0xf0, 0x87, 0x1a, 0xdc,
|
|
0x6e, 0x23, 0xef, 0x32, 0x7a, 0x88, 0x9f, 0x1e, 0xad, 0x7f, 0xa1, 0xc1, 0xea, 0xfe, 0x20, 0x3a,
|
|
0x79, 0x71, 0x35, 0xb6, 0x7e, 0xab, 0xc3, 0x4d, 0x95, 0x9b, 0xf6, 0xd2, 0xec, 0xfb, 0x09, 0x05,
|
|
0xe8, 0x1a, 0xd4, 0xb3, 0x84, 0x9f, 0x85, 0xe9, 0x24, 0x2b, 0xd7, 0xb4, 0x34, 0x53, 0xd3, 0xf2,
|
|
0x1c, 0x4d, 0x2b, 0x45, 0xdb, 0x7e, 0x13, 0x9a, 0xf9, 0xab, 0x23, 0x4d, 0xab, 0xde, 0x8d, 0xfb,
|
|
0xd3, 0x4d, 0x9b, 0xc1, 0x21, 0x2d, 0x9b, 0x3f, 0x58, 0xd2, 0xb0, 0x1f, 0xe8, 0xb0, 0x22, 0xb2,
|
|
0xda, 0x4b, 0xcc, 0x2e, 0x8f, 0xd9, 0xdf, 0x35, 0x58, 0x7e, 0xc7, 0xe5, 0xd7, 0x09, 0xd9, 0xf5,
|
|
0x06, 0xff, 0x79, 0x65, 0xcb, 0x1f, 0x5b, 0xd9, 0x7f, 0x6a, 0xd0, 0x4a, 0xf3, 0xdd, 0xa7, 0x43,
|
|
0x63, 0xf1, 0xa4, 0x89, 0x5c, 0xf7, 0xe2, 0x6a, 0x7b, 0xcd, 0xc9, 0xfd, 0x5f, 0x3a, 0x2c, 0x76,
|
|
0x42, 0x8e, 0x2c, 0x7e, 0x6e, 0x9a, 0xbe, 0x71, 0x5e, 0x62, 0xd5, 0x9c, 0x9c, 0x91, 0xe5, 0x52,
|
|
0x2d, 0x8a, 0xc0, 0x8d, 0x63, 0x5f, 0x54, 0xa4, 0x59, 0x7d, 0x93, 0x33, 0x8a, 0x55, 0xbe, 0x4a,
|
|
0x03, 0x13, 0x55, 0xfe, 0x04, 0xaa, 0xd5, 0x22, 0xaa, 0xaf, 0x03, 0x64, 0xe0, 0xf3, 0xd6, 0xc2,
|
|
0x9a, 0x21, 0xca, 0xf4, 0x9c, 0x23, 0x3a, 0x20, 0x16, 0x9d, 0x74, 0xda, 0xbc, 0x55, 0x5b, 0x33,
|
|
0x44, 0x07, 0xa4, 0x28, 0xf2, 0x15, 0x58, 0x60, 0xd1, 0x89, 0xd3, 0x73, 0x63, 0xb7, 0x05, 0xb2,
|
|
0xc8, 0x9e, 0x53, 0x4d, 0x56, 0x59, 0x74, 0xd2, 0x76, 0x63, 0xd7, 0x7a, 0xaa, 0xc3, 0x62, 0x1b,
|
|
0x7d, 0x8c, 0xf1, 0x7f, 0x0f, 0x7a, 0x01, 0xb1, 0xd2, 0x1c, 0xc4, 0xca, 0xf3, 0x10, 0xab, 0x9c,
|
|
0x43, 0xec, 0x1e, 0x34, 0x86, 0x8c, 0x06, 0x2e, 0x1b, 0x3b, 0x1e, 0x8e, 0x45, 0x7b, 0x63, 0xc8,
|
|
0x2c, 0xaf, 0x78, 0x0f, 0x71, 0xcc, 0xad, 0x8f, 0x34, 0x58, 0xdc, 0x47, 0x97, 0x75, 0x07, 0xcf,
|
|
0x0d, 0x86, 0x09, 0xf9, 0x8d, 0xa2, 0xfc, 0xf3, 0x6b, 0xe8, 0xcf, 0x83, 0xc9, 0x90, 0x8f, 0xfc,
|
|
0xd8, 0xc9, 0xc1, 0x51, 0x00, 0x2c, 0x29, 0xfe, 0x4e, 0x06, 0xd1, 0x26, 0x94, 0x8f, 0x47, 0xc8,
|
|
0xc6, 0x17, 0x77, 0x13, 0x6a, 0x9f, 0xf5, 0x57, 0x0d, 0xcc, 0xfd, 0x31, 0xdf, 0x89, 0xc2, 0x23,
|
|
0xda, 0x7f, 0xe1, 0x34, 0x27, 0x50, 0x92, 0xf6, 0x2a, 0xaf, 0x19, 0xeb, 0x35, 0x5b, 0xae, 0x85,
|
|
0x2d, 0x3d, 0x1c, 0x3b, 0x43, 0x86, 0x47, 0xf4, 0x14, 0x95, 0xb5, 0x6b, 0x76, 0xdd, 0xc3, 0xf1,
|
|
0x5e, 0xc2, 0xb2, 0x9e, 0xe9, 0xd0, 0x48, 0x6d, 0x29, 0xf0, 0xb9, 0x8a, 0x42, 0x79, 0x4f, 0xac,
|
|
0x5f, 0x7e, 0xea, 0x32, 0xbd, 0x53, 0x9a, 0x9d, 0x47, 0xef, 0x41, 0x43, 0x9a, 0xc3, 0x09, 0xa3,
|
|
0x1e, 0x66, 0xd6, 0xad, 0x4b, 0xde, 0x23, 0xc9, 0x2a, 0x02, 0x55, 0xb9, 0x8c, 0x8b, 0x54, 0xa7,
|
|
0xbb, 0x08, 0x81, 0xd2, 0x80, 0xc6, 0x2a, 0xaf, 0x34, 0x6c, 0xb9, 0xb6, 0xbe, 0x07, 0xf5, 0x03,
|
|
0x1a, 0xe0, 0x01, 0xed, 0x7a, 0xbb, 0xbc, 0x7f, 0x15, 0xb8, 0xf2, 0xe9, 0x8c, 0x5e, 0x98, 0xce,
|
|
0xcc, 0x7d, 0x61, 0xac, 0xef, 0x6b, 0xb0, 0xf0, 0xb6, 0x3f, 0xe2, 0x83, 0x2b, 0xde, 0x5e, 0xc8,
|
|
0xc7, 0xfa, 0x94, 0x7c, 0x3c, 0x47, 0x86, 0x9f, 0x6b, 0x50, 0x7d, 0x88, 0xe3, 0xad, 0x7d, 0xec,
|
|
0x4b, 0xfb, 0x89, 0x9c, 0x9a, 0x4e, 0x6d, 0x24, 0x41, 0xee, 0x42, 0x7d, 0x22, 0x8b, 0x24, 0xe7,
|
|
0x43, 0x9e, 0x44, 0x2e, 0x78, 0x46, 0x6f, 0xc3, 0x02, 0xe5, 0xce, 0x63, 0xd7, 0xa7, 0x3d, 0x69,
|
|
0xff, 0x05, 0xbb, 0x4a, 0xf9, 0xbb, 0x82, 0x14, 0xf9, 0x2b, 0x13, 0x53, 0x79, 0xbb, 0x61, 0x4f,
|
|
0x70, 0xac, 0xf7, 0x00, 0x12, 0xd1, 0x04, 0x40, 0x99, 0x77, 0x69, 0x93, 0xde, 0xf5, 0x55, 0xa8,
|
|
0x7a, 0x38, 0xde, 0xe2, 0xd8, 0x6f, 0xe9, 0x32, 0xf9, 0xcf, 0x42, 0x2d, 0x39, 0xc9, 0x4e, 0xb7,
|
|
0x5b, 0x3f, 0xd0, 0xa1, 0xf6, 0xad, 0xc8, 0xed, 0x75, 0xc2, 0x1e, 0x9e, 0x3e, 0x57, 0xf8, 0x8f,
|
|
0x28, 0xfa, 0xbd, 0x47, 0x79, 0xfe, 0xcf, 0x19, 0x22, 0x38, 0x24, 0x91, 0x07, 0x47, 0x42, 0x0a,
|
|
0xd8, 0xa9, 0x90, 0xcc, 0x19, 0xba, 0xf1, 0x20, 0xcd, 0x05, 0x20, 0x59, 0x7b, 0x82, 0x43, 0xda,
|
|
0xd0, 0x48, 0x37, 0x30, 0x37, 0x50, 0x19, 0xa1, 0xbe, 0x75, 0x6f, 0x6a, 0xa0, 0x3e, 0xc4, 0xf1,
|
|
0xbb, 0xae, 0x3f, 0xc2, 0x3d, 0x97, 0x32, 0xbb, 0x9e, 0x1c, 0x22, 0xbe, 0xb2, 0x9e, 0x6a, 0x00,
|
|
0x12, 0x01, 0x11, 0xcb, 0xe7, 0x0f, 0xd5, 0x3e, 0xce, 0xa1, 0xe4, 0x4b, 0xb0, 0x12, 0x8e, 0x02,
|
|
0x87, 0xa1, 0xef, 0xc6, 0xd8, 0x73, 0x12, 0x30, 0x78, 0x02, 0x0e, 0x09, 0x47, 0x81, 0xad, 0x7e,
|
|
0xda, 0x4f, 0x7e, 0xb1, 0x7e, 0xa8, 0x01, 0xbc, 0x2d, 0x34, 0x57, 0x62, 0x9c, 0x6d, 0x61, 0xb4,
|
|
0x29, 0x2d, 0xcc, 0x04, 0x74, 0x7a, 0x11, 0xba, 0xed, 0x14, 0x3a, 0x91, 0x97, 0x78, 0x32, 0xda,
|
|
0xbc, 0x37, 0xc3, 0x9c, 0xb9, 0xf2, 0x09, 0xba, 0x72, 0x6d, 0xfd, 0x4c, 0x4d, 0x83, 0x85, 0x74,
|
|
0x4a, 0xa4, 0x82, 0x95, 0xb5, 0xb3, 0x56, 0xbe, 0x0b, 0xf5, 0x00, 0x83, 0x88, 0x8d, 0x1d, 0x4e,
|
|
0x9f, 0x60, 0x1a, 0x24, 0x8a, 0xb5, 0x4f, 0x9f, 0xa0, 0x08, 0x03, 0x09, 0x49, 0x74, 0xc2, 0xd3,
|
|
0xc7, 0x40, 0xc0, 0x10, 0x9d, 0x70, 0xf2, 0x05, 0xb8, 0xc1, 0xb0, 0x8b, 0x61, 0xec, 0x8f, 0x9d,
|
|
0x20, 0xea, 0xd1, 0x23, 0x8a, 0x69, 0xa8, 0x98, 0xe9, 0x0f, 0xbb, 0x09, 0xdf, 0xfa, 0x9b, 0x06,
|
|
0xcd, 0x6f, 0xa7, 0x09, 0x52, 0x49, 0xf6, 0x1c, 0xf2, 0xd6, 0xd7, 0xa4, 0xb2, 0x05, 0xfc, 0xe6,
|
|
0x8c, 0x86, 0x33, 0x90, 0xec, 0x05, 0x8e, 0x7d, 0x25, 0xd4, 0x36, 0xd4, 0xa5, 0x39, 0x92, 0x33,
|
|
0x4a, 0x73, 0x6d, 0x90, 0x5b, 0xde, 0x86, 0xa3, 0x6c, 0x6d, 0xfd, 0x52, 0x07, 0xa2, 0x46, 0x0a,
|
|
0xd2, 0x48, 0x2f, 0x5c, 0x1f, 0xf0, 0xc6, 0xf4, 0x3e, 0xe0, 0x7c, 0x81, 0xf7, 0x19, 0x50, 0x6a,
|
|
0xe5, 0xf3, 0xbe, 0x42, 0x12, 0x68, 0x43, 0x03, 0x4f, 0x63, 0xe6, 0xa6, 0x41, 0x57, 0xbd, 0x74,
|
|
0xd0, 0xc9, 0xcf, 0x92, 0x48, 0x7e, 0x5f, 0x87, 0x95, 0xb4, 0x53, 0x7c, 0x89, 0xd7, 0xc5, 0x78,
|
|
0xfd, 0x4e, 0x87, 0xd7, 0x0a, 0x78, 0xed, 0xb1, 0xa8, 0xcf, 0x90, 0xf3, 0x97, 0xb8, 0xcd, 0xc3,
|
|
0xed, 0xcd, 0xbf, 0x18, 0x50, 0x4d, 0x14, 0x26, 0x35, 0x28, 0x7b, 0x8f, 0xa2, 0x10, 0xcd, 0x57,
|
|
0xc8, 0x2a, 0xdc, 0xf0, 0xce, 0xfe, 0x37, 0x61, 0xf6, 0xc8, 0x32, 0x2c, 0x79, 0xc5, 0xb1, 0xbd,
|
|
0x89, 0x84, 0x40, 0xd3, 0x2b, 0x4c, 0xad, 0xcd, 0x23, 0x72, 0x0b, 0x96, 0xbd, 0xf3, 0x83, 0x5d,
|
|
0x53, 0xbc, 0xfb, 0xa6, 0x57, 0x9c, 0x7d, 0x72, 0x73, 0x20, 0x8f, 0xf8, 0x06, 0xc6, 0x59, 0x11,
|
|
0xcf, 0x4d, 0x4a, 0x56, 0xc1, 0xf4, 0xce, 0x8c, 0x20, 0xcd, 0xdf, 0x6b, 0x64, 0x19, 0x9a, 0x5e,
|
|
0x61, 0xc6, 0x66, 0xfe, 0x41, 0x23, 0x04, 0x16, 0xbd, 0xc9, 0x21, 0x92, 0xf9, 0x47, 0x8d, 0xdc,
|
|
0x02, 0xe2, 0x9d, 0x9b, 0xb5, 0x98, 0x7f, 0xd2, 0xc8, 0x0a, 0x2c, 0x79, 0x85, 0x91, 0x04, 0x37,
|
|
0xff, 0xac, 0x91, 0x1b, 0xd0, 0xf0, 0x26, 0xd2, 0x93, 0xf9, 0x2b, 0x5d, 0x5d, 0x35, 0xe9, 0x53,
|
|
0xe6, 0xfb, 0x3a, 0xb9, 0x03, 0x37, 0xbd, 0xa9, 0x8e, 0x66, 0x3e, 0xd3, 0x49, 0x03, 0xaa, 0x9e,
|
|
0x6a, 0xfe, 0xcd, 0x1f, 0x19, 0x92, 0x52, 0x5d, 0xa9, 0xf9, 0x63, 0x83, 0xd4, 0xa1, 0xe2, 0xc9,
|
|
0xfa, 0xd0, 0xfc, 0x89, 0xfa, 0x49, 0x55, 0xf7, 0xe6, 0x47, 0x86, 0x14, 0x7f, 0xb2, 0xd6, 0x37,
|
|
0xff, 0x6d, 0x90, 0x26, 0xd4, 0xbc, 0xb4, 0x9e, 0x35, 0x7f, 0x5d, 0x93, 0x52, 0x17, 0x9f, 0x0a,
|
|
0xf3, 0x83, 0x1a, 0x59, 0x02, 0xf0, 0xb2, 0xb2, 0xc7, 0xfc, 0x4d, 0xed, 0xcd, 0xb7, 0x60, 0x21,
|
|
0xfd, 0x7b, 0x90, 0x00, 0x54, 0x76, 0x5d, 0x1e, 0x23, 0x33, 0x5f, 0x11, 0x6b, 0x1b, 0xdd, 0x1e,
|
|
0x32, 0x53, 0x13, 0xeb, 0xef, 0x30, 0x2a, 0xf8, 0xba, 0xb0, 0xf9, 0x9e, 0x70, 0x4c, 0xd3, 0xd8,
|
|
0x6e, 0x7f, 0x77, 0xbb, 0x4f, 0xe3, 0xc1, 0xe8, 0x50, 0x78, 0xcd, 0xe6, 0x13, 0xea, 0xfb, 0xf4,
|
|
0x49, 0x8c, 0xdd, 0xc1, 0xa6, 0xf2, 0xa8, 0x2f, 0xf6, 0x28, 0x8f, 0x19, 0x3d, 0x1c, 0xc5, 0xd8,
|
|
0xdb, 0x4c, 0x83, 0x65, 0x53, 0xba, 0x59, 0x46, 0x0e, 0x0f, 0x0f, 0x2b, 0x92, 0xf3, 0xe0, 0xbf,
|
|
0x01, 0x00, 0x00, 0xff, 0xff, 0xb2, 0xdd, 0xfb, 0x16, 0x8f, 0x1f, 0x00, 0x00,
|
|
}
|