mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-05 05:18:52 +08:00
fceba63a33
* Fix query hang bug (#5709) Signed-off-by: fishpenguin <kun.yu@zilliz.com> * Add segment and channel msgs in retrieve results Signed-off-by: fishpenguin <kun.yu@zilliz.com>
2240 lines
80 KiB
Go
2240 lines
80 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: internal.proto
|
|
|
|
package internalpb
|
|
|
|
import (
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
commonpb "github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
schemapb "github.com/milvus-io/milvus/internal/proto/schemapb"
|
|
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 StateCode int32
|
|
|
|
const (
|
|
StateCode_Initializing StateCode = 0
|
|
StateCode_Healthy StateCode = 1
|
|
StateCode_Abnormal StateCode = 2
|
|
)
|
|
|
|
var StateCode_name = map[int32]string{
|
|
0: "Initializing",
|
|
1: "Healthy",
|
|
2: "Abnormal",
|
|
}
|
|
|
|
var StateCode_value = map[string]int32{
|
|
"Initializing": 0,
|
|
"Healthy": 1,
|
|
"Abnormal": 2,
|
|
}
|
|
|
|
func (x StateCode) String() string {
|
|
return proto.EnumName(StateCode_name, int32(x))
|
|
}
|
|
|
|
func (StateCode) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{0}
|
|
}
|
|
|
|
type ComponentInfo struct {
|
|
NodeID int64 `protobuf:"varint,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
|
|
StateCode StateCode `protobuf:"varint,3,opt,name=state_code,json=stateCode,proto3,enum=milvus.proto.internal.StateCode" json:"state_code,omitempty"`
|
|
ExtraInfo []*commonpb.KeyValuePair `protobuf:"bytes,4,rep,name=extra_info,json=extraInfo,proto3" json:"extra_info,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ComponentInfo) Reset() { *m = ComponentInfo{} }
|
|
func (m *ComponentInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*ComponentInfo) ProtoMessage() {}
|
|
func (*ComponentInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{0}
|
|
}
|
|
|
|
func (m *ComponentInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ComponentInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *ComponentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ComponentInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ComponentInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ComponentInfo.Merge(m, src)
|
|
}
|
|
func (m *ComponentInfo) XXX_Size() int {
|
|
return xxx_messageInfo_ComponentInfo.Size(m)
|
|
}
|
|
func (m *ComponentInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ComponentInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ComponentInfo proto.InternalMessageInfo
|
|
|
|
func (m *ComponentInfo) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ComponentInfo) GetRole() string {
|
|
if m != nil {
|
|
return m.Role
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ComponentInfo) GetStateCode() StateCode {
|
|
if m != nil {
|
|
return m.StateCode
|
|
}
|
|
return StateCode_Initializing
|
|
}
|
|
|
|
func (m *ComponentInfo) GetExtraInfo() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.ExtraInfo
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ComponentStates struct {
|
|
State *ComponentInfo `protobuf:"bytes,1,opt,name=state,proto3" json:"state,omitempty"`
|
|
SubcomponentStates []*ComponentInfo `protobuf:"bytes,2,rep,name=subcomponent_states,json=subcomponentStates,proto3" json:"subcomponent_states,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,3,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ComponentStates) Reset() { *m = ComponentStates{} }
|
|
func (m *ComponentStates) String() string { return proto.CompactTextString(m) }
|
|
func (*ComponentStates) ProtoMessage() {}
|
|
func (*ComponentStates) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{1}
|
|
}
|
|
|
|
func (m *ComponentStates) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ComponentStates.Unmarshal(m, b)
|
|
}
|
|
func (m *ComponentStates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ComponentStates.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ComponentStates) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ComponentStates.Merge(m, src)
|
|
}
|
|
func (m *ComponentStates) XXX_Size() int {
|
|
return xxx_messageInfo_ComponentStates.Size(m)
|
|
}
|
|
func (m *ComponentStates) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ComponentStates.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ComponentStates proto.InternalMessageInfo
|
|
|
|
func (m *ComponentStates) GetState() *ComponentInfo {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ComponentStates) GetSubcomponentStates() []*ComponentInfo {
|
|
if m != nil {
|
|
return m.SubcomponentStates
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ComponentStates) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetComponentStatesRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetComponentStatesRequest) Reset() { *m = GetComponentStatesRequest{} }
|
|
func (m *GetComponentStatesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetComponentStatesRequest) ProtoMessage() {}
|
|
func (*GetComponentStatesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{2}
|
|
}
|
|
|
|
func (m *GetComponentStatesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetComponentStatesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetComponentStatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetComponentStatesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetComponentStatesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetComponentStatesRequest.Merge(m, src)
|
|
}
|
|
func (m *GetComponentStatesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetComponentStatesRequest.Size(m)
|
|
}
|
|
func (m *GetComponentStatesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetComponentStatesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetComponentStatesRequest proto.InternalMessageInfo
|
|
|
|
type GetTimeTickChannelRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetTimeTickChannelRequest) Reset() { *m = GetTimeTickChannelRequest{} }
|
|
func (m *GetTimeTickChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetTimeTickChannelRequest) ProtoMessage() {}
|
|
func (*GetTimeTickChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{3}
|
|
}
|
|
|
|
func (m *GetTimeTickChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetTimeTickChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetTimeTickChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetTimeTickChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetTimeTickChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetTimeTickChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *GetTimeTickChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetTimeTickChannelRequest.Size(m)
|
|
}
|
|
func (m *GetTimeTickChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetTimeTickChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetTimeTickChannelRequest proto.InternalMessageInfo
|
|
|
|
type GetStatisticsChannelRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetStatisticsChannelRequest) Reset() { *m = GetStatisticsChannelRequest{} }
|
|
func (m *GetStatisticsChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetStatisticsChannelRequest) ProtoMessage() {}
|
|
func (*GetStatisticsChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{4}
|
|
}
|
|
|
|
func (m *GetStatisticsChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetStatisticsChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetStatisticsChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetStatisticsChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetStatisticsChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetStatisticsChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *GetStatisticsChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetStatisticsChannelRequest.Size(m)
|
|
}
|
|
func (m *GetStatisticsChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetStatisticsChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetStatisticsChannelRequest proto.InternalMessageInfo
|
|
|
|
type GetDdChannelRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetDdChannelRequest) Reset() { *m = GetDdChannelRequest{} }
|
|
func (m *GetDdChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetDdChannelRequest) ProtoMessage() {}
|
|
func (*GetDdChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{5}
|
|
}
|
|
|
|
func (m *GetDdChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetDdChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetDdChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetDdChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetDdChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetDdChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *GetDdChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetDdChannelRequest.Size(m)
|
|
}
|
|
func (m *GetDdChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetDdChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetDdChannelRequest proto.InternalMessageInfo
|
|
|
|
type NodeInfo struct {
|
|
Address *commonpb.Address `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
Role string `protobuf:"bytes,2,opt,name=role,proto3" json:"role,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *NodeInfo) Reset() { *m = NodeInfo{} }
|
|
func (m *NodeInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*NodeInfo) ProtoMessage() {}
|
|
func (*NodeInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{6}
|
|
}
|
|
|
|
func (m *NodeInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_NodeInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *NodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_NodeInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *NodeInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_NodeInfo.Merge(m, src)
|
|
}
|
|
func (m *NodeInfo) XXX_Size() int {
|
|
return xxx_messageInfo_NodeInfo.Size(m)
|
|
}
|
|
func (m *NodeInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_NodeInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_NodeInfo proto.InternalMessageInfo
|
|
|
|
func (m *NodeInfo) GetAddress() *commonpb.Address {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *NodeInfo) GetRole() string {
|
|
if m != nil {
|
|
return m.Role
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type InitParams struct {
|
|
NodeID int64 `protobuf:"varint,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
StartParams []*commonpb.KeyValuePair `protobuf:"bytes,2,rep,name=start_params,json=startParams,proto3" json:"start_params,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *InitParams) Reset() { *m = InitParams{} }
|
|
func (m *InitParams) String() string { return proto.CompactTextString(m) }
|
|
func (*InitParams) ProtoMessage() {}
|
|
func (*InitParams) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{7}
|
|
}
|
|
|
|
func (m *InitParams) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_InitParams.Unmarshal(m, b)
|
|
}
|
|
func (m *InitParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_InitParams.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *InitParams) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_InitParams.Merge(m, src)
|
|
}
|
|
func (m *InitParams) XXX_Size() int {
|
|
return xxx_messageInfo_InitParams.Size(m)
|
|
}
|
|
func (m *InitParams) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_InitParams.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_InitParams proto.InternalMessageInfo
|
|
|
|
func (m *InitParams) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InitParams) GetStartParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.StartParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type StringList struct {
|
|
Values []string `protobuf:"bytes,1,rep,name=values,proto3" json:"values,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *StringList) Reset() { *m = StringList{} }
|
|
func (m *StringList) String() string { return proto.CompactTextString(m) }
|
|
func (*StringList) ProtoMessage() {}
|
|
func (*StringList) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{8}
|
|
}
|
|
|
|
func (m *StringList) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_StringList.Unmarshal(m, b)
|
|
}
|
|
func (m *StringList) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_StringList.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *StringList) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_StringList.Merge(m, src)
|
|
}
|
|
func (m *StringList) XXX_Size() int {
|
|
return xxx_messageInfo_StringList.Size(m)
|
|
}
|
|
func (m *StringList) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_StringList.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_StringList proto.InternalMessageInfo
|
|
|
|
func (m *StringList) GetValues() []string {
|
|
if m != nil {
|
|
return m.Values
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *StringList) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type TimeTickMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,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_41f4a519b878ee3b, []int{9}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CreateCollectionRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collectionName,proto3" json:"collectionName,omitempty"`
|
|
// `schema` is the serialized `schema.CollectionSchema`
|
|
DbID int64 `protobuf:"varint,4,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,5,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
Schema []byte `protobuf:"bytes,6,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
VirtualChannelNames []string `protobuf:"bytes,7,rep,name=virtualChannelNames,proto3" json:"virtualChannelNames,omitempty"`
|
|
PhysicalChannelNames []string `protobuf:"bytes,8,rep,name=physicalChannelNames,proto3" json:"physicalChannelNames,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_41f4a519b878ee3b, []int{10}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetSchema() []byte {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetVirtualChannelNames() []string {
|
|
if m != nil {
|
|
return m.VirtualChannelNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetPhysicalChannelNames() []string {
|
|
if m != nil {
|
|
return m.PhysicalChannelNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DropCollectionRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collectionName,proto3" json:"collectionName,omitempty"`
|
|
DbID int64 `protobuf:"varint,4,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,5,opt,name=collectionID,proto3" json:"collectionID,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_41f4a519b878ee3b, []int{11}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreatePartitionRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
DbID int64 `protobuf:"varint,5,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,7,opt,name=partitionID,proto3" json:"partitionID,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_41f4a519b878ee3b, []int{12}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetPartitionName() string {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
type DropPartitionRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
DbID int64 `protobuf:"varint,5,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,7,opt,name=partitionID,proto3" json:"partitionID,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_41f4a519b878ee3b, []int{13}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetPartitionName() string {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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
|
|
}
|
|
|
|
type CreateIndexRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
FieldName string `protobuf:"bytes,4,opt,name=field_name,json=fieldName,proto3" json:"field_name,omitempty"`
|
|
DbID int64 `protobuf:"varint,5,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
FieldID int64 `protobuf:"varint,7,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
|
ExtraParams []*commonpb.KeyValuePair `protobuf:"bytes,8,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_41f4a519b878ee3b, []int{14}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetFieldID() int64 {
|
|
if m != nil {
|
|
return m.FieldID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CreateIndexRequest) GetExtraParams() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.ExtraParams
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type InsertRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
PartitionName string `protobuf:"bytes,4,opt,name=partition_name,json=partitionName,proto3" json:"partition_name,omitempty"`
|
|
DbID int64 `protobuf:"varint,5,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,6,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,7,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,8,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
ChannelID string `protobuf:"bytes,9,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
Timestamps []uint64 `protobuf:"varint,10,rep,packed,name=timestamps,proto3" json:"timestamps,omitempty"`
|
|
RowIDs []int64 `protobuf:"varint,11,rep,packed,name=rowIDs,proto3" json:"rowIDs,omitempty"`
|
|
RowData []*commonpb.Blob `protobuf:"bytes,12,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_41f4a519b878ee3b, []int{15}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *InsertRequest) GetDbName() string {
|
|
if m != nil {
|
|
return m.DbName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InsertRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InsertRequest) GetPartitionName() string {
|
|
if m != nil {
|
|
return m.PartitionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *InsertRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetChannelID() string {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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 SearchRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,2,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
DbID int64 `protobuf:"varint,3,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionIDs []int64 `protobuf:"varint,5,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
|
|
Dsl string `protobuf:"bytes,6,opt,name=dsl,proto3" json:"dsl,omitempty"`
|
|
// serialized `PlaceholderGroup`
|
|
PlaceholderGroup []byte `protobuf:"bytes,7,opt,name=placeholder_group,json=placeholderGroup,proto3" json:"placeholder_group,omitempty"`
|
|
DslType commonpb.DslType `protobuf:"varint,8,opt,name=dsl_type,json=dslType,proto3,enum=milvus.proto.common.DslType" json:"dsl_type,omitempty"`
|
|
SerializedExprPlan []byte `protobuf:"bytes,9,opt,name=serialized_expr_plan,json=serializedExprPlan,proto3" json:"serialized_expr_plan,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_41f4a519b878ee3b, []int{16}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchRequest) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchRequest) GetDsl() string {
|
|
if m != nil {
|
|
return m.Dsl
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchRequest) GetPlaceholderGroup() []byte {
|
|
if m != nil {
|
|
return m.PlaceholderGroup
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchRequest) GetDslType() commonpb.DslType {
|
|
if m != nil {
|
|
return m.DslType
|
|
}
|
|
return commonpb.DslType_Dsl
|
|
}
|
|
|
|
func (m *SearchRequest) GetSerializedExprPlan() []byte {
|
|
if m != nil {
|
|
return m.SerializedExprPlan
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SearchResults struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,3,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
MetricType string `protobuf:"bytes,4,opt,name=metric_type,json=metricType,proto3" json:"metric_type,omitempty"`
|
|
Hits [][]byte `protobuf:"bytes,5,rep,name=hits,proto3" json:"hits,omitempty"`
|
|
SealedSegmentIDsSearched []int64 `protobuf:"varint,6,rep,packed,name=sealed_segmentIDs_searched,json=sealedSegmentIDsSearched,proto3" json:"sealed_segmentIDs_searched,omitempty"`
|
|
ChannelIDsSearched []string `protobuf:"bytes,7,rep,name=channelIDs_searched,json=channelIDsSearched,proto3" json:"channelIDs_searched,omitempty"`
|
|
GlobalSealedSegmentIDs []int64 `protobuf:"varint,8,rep,packed,name=global_sealed_segmentIDs,json=globalSealedSegmentIDs,proto3" json:"global_sealed_segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SearchResults) Reset() { *m = SearchResults{} }
|
|
func (m *SearchResults) String() string { return proto.CompactTextString(m) }
|
|
func (*SearchResults) ProtoMessage() {}
|
|
func (*SearchResults) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{17}
|
|
}
|
|
|
|
func (m *SearchResults) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SearchResults.Unmarshal(m, b)
|
|
}
|
|
func (m *SearchResults) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SearchResults.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SearchResults) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SearchResults.Merge(m, src)
|
|
}
|
|
func (m *SearchResults) XXX_Size() int {
|
|
return xxx_messageInfo_SearchResults.Size(m)
|
|
}
|
|
func (m *SearchResults) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SearchResults.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SearchResults proto.InternalMessageInfo
|
|
|
|
func (m *SearchResults) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResults) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResults) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchResults) GetMetricType() string {
|
|
if m != nil {
|
|
return m.MetricType
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SearchResults) GetHits() [][]byte {
|
|
if m != nil {
|
|
return m.Hits
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResults) GetSealedSegmentIDsSearched() []int64 {
|
|
if m != nil {
|
|
return m.SealedSegmentIDsSearched
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResults) GetChannelIDsSearched() []string {
|
|
if m != nil {
|
|
return m.ChannelIDsSearched
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResults) GetGlobalSealedSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.GlobalSealedSegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RetrieveRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,2,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
DbID int64 `protobuf:"varint,3,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionIDs []int64 `protobuf:"varint,5,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
|
|
Ids *schemapb.IDs `protobuf:"bytes,6,opt,name=ids,proto3" json:"ids,omitempty"`
|
|
OutputFields []string `protobuf:"bytes,7,rep,name=output_fields,json=outputFields,proto3" json:"output_fields,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RetrieveRequest) Reset() { *m = RetrieveRequest{} }
|
|
func (m *RetrieveRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*RetrieveRequest) ProtoMessage() {}
|
|
func (*RetrieveRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{18}
|
|
}
|
|
|
|
func (m *RetrieveRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RetrieveRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *RetrieveRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RetrieveRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RetrieveRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RetrieveRequest.Merge(m, src)
|
|
}
|
|
func (m *RetrieveRequest) XXX_Size() int {
|
|
return xxx_messageInfo_RetrieveRequest.Size(m)
|
|
}
|
|
func (m *RetrieveRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RetrieveRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RetrieveRequest proto.InternalMessageInfo
|
|
|
|
func (m *RetrieveRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetPartitionIDs() []int64 {
|
|
if m != nil {
|
|
return m.PartitionIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetIds() *schemapb.IDs {
|
|
if m != nil {
|
|
return m.Ids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveRequest) GetOutputFields() []string {
|
|
if m != nil {
|
|
return m.OutputFields
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type RetrieveResults struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,2,opt,name=status,proto3" json:"status,omitempty"`
|
|
ResultChannelID string `protobuf:"bytes,3,opt,name=result_channelID,json=resultChannelID,proto3" json:"result_channelID,omitempty"`
|
|
Ids *schemapb.IDs `protobuf:"bytes,4,opt,name=ids,proto3" json:"ids,omitempty"`
|
|
FieldsData []*schemapb.FieldData `protobuf:"bytes,5,rep,name=fields_data,json=fieldsData,proto3" json:"fields_data,omitempty"`
|
|
SealedSegmentIDsRetrieved []int64 `protobuf:"varint,6,rep,packed,name=sealed_segmentIDs_retrieved,json=sealedSegmentIDsRetrieved,proto3" json:"sealed_segmentIDs_retrieved,omitempty"`
|
|
ChannelIDsRetrieved []string `protobuf:"bytes,7,rep,name=channelIDs_retrieved,json=channelIDsRetrieved,proto3" json:"channelIDs_retrieved,omitempty"`
|
|
GlobalSealedSegmentIDs []int64 `protobuf:"varint,8,rep,packed,name=global_sealed_segmentIDs,json=globalSealedSegmentIDs,proto3" json:"global_sealed_segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *RetrieveResults) Reset() { *m = RetrieveResults{} }
|
|
func (m *RetrieveResults) String() string { return proto.CompactTextString(m) }
|
|
func (*RetrieveResults) ProtoMessage() {}
|
|
func (*RetrieveResults) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{19}
|
|
}
|
|
|
|
func (m *RetrieveResults) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_RetrieveResults.Unmarshal(m, b)
|
|
}
|
|
func (m *RetrieveResults) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_RetrieveResults.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *RetrieveResults) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_RetrieveResults.Merge(m, src)
|
|
}
|
|
func (m *RetrieveResults) XXX_Size() int {
|
|
return xxx_messageInfo_RetrieveResults.Size(m)
|
|
}
|
|
func (m *RetrieveResults) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_RetrieveResults.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_RetrieveResults proto.InternalMessageInfo
|
|
|
|
func (m *RetrieveResults) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetResultChannelID() string {
|
|
if m != nil {
|
|
return m.ResultChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *RetrieveResults) GetIds() *schemapb.IDs {
|
|
if m != nil {
|
|
return m.Ids
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetFieldsData() []*schemapb.FieldData {
|
|
if m != nil {
|
|
return m.FieldsData
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetSealedSegmentIDsRetrieved() []int64 {
|
|
if m != nil {
|
|
return m.SealedSegmentIDsRetrieved
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetChannelIDsRetrieved() []string {
|
|
if m != nil {
|
|
return m.ChannelIDsRetrieved
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *RetrieveResults) GetGlobalSealedSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.GlobalSealedSegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DeleteRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
CollectionName string `protobuf:"bytes,2,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
ChannelID string `protobuf:"bytes,3,opt,name=channelID,proto3" json:"channelID,omitempty"`
|
|
Timestamps []uint64 `protobuf:"varint,4,rep,packed,name=timestamps,proto3" json:"timestamps,omitempty"`
|
|
PrimaryKeys []int64 `protobuf:"varint,5,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_41f4a519b878ee3b, []int{20}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DeleteRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetChannelID() string {
|
|
if m != nil {
|
|
return m.ChannelID
|
|
}
|
|
return ""
|
|
}
|
|
|
|
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 LoadIndex struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,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_41f4a519b878ee3b, []int{21}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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 SegmentStatisticsUpdates struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=SegmentID,proto3" json:"SegmentID,omitempty"`
|
|
MemorySize int64 `protobuf:"varint,2,opt,name=MemorySize,proto3" json:"MemorySize,omitempty"`
|
|
NumRows int64 `protobuf:"varint,3,opt,name=NumRows,proto3" json:"NumRows,omitempty"`
|
|
CreateTime uint64 `protobuf:"varint,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
|
EndTime uint64 `protobuf:"varint,5,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
|
|
StartPosition *MsgPosition `protobuf:"bytes,6,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
|
|
EndPosition *MsgPosition `protobuf:"bytes,7,opt,name=end_position,json=endPosition,proto3" json:"end_position,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) Reset() { *m = SegmentStatisticsUpdates{} }
|
|
func (m *SegmentStatisticsUpdates) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentStatisticsUpdates) ProtoMessage() {}
|
|
func (*SegmentStatisticsUpdates) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{22}
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentStatisticsUpdates.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentStatisticsUpdates) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentStatisticsUpdates.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentStatisticsUpdates) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentStatisticsUpdates.Merge(m, src)
|
|
}
|
|
func (m *SegmentStatisticsUpdates) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentStatisticsUpdates.Size(m)
|
|
}
|
|
func (m *SegmentStatisticsUpdates) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentStatisticsUpdates.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentStatisticsUpdates proto.InternalMessageInfo
|
|
|
|
func (m *SegmentStatisticsUpdates) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetMemorySize() int64 {
|
|
if m != nil {
|
|
return m.MemorySize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetNumRows() int64 {
|
|
if m != nil {
|
|
return m.NumRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetCreateTime() uint64 {
|
|
if m != nil {
|
|
return m.CreateTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetEndTime() uint64 {
|
|
if m != nil {
|
|
return m.EndTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetStartPosition() *MsgPosition {
|
|
if m != nil {
|
|
return m.StartPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentStatisticsUpdates) GetEndPosition() *MsgPosition {
|
|
if m != nil {
|
|
return m.EndPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentStatistics struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
SegStats []*SegmentStatisticsUpdates `protobuf:"bytes,2,rep,name=SegStats,proto3" json:"SegStats,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentStatistics) Reset() { *m = SegmentStatistics{} }
|
|
func (m *SegmentStatistics) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentStatistics) ProtoMessage() {}
|
|
func (*SegmentStatistics) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{23}
|
|
}
|
|
|
|
func (m *SegmentStatistics) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentStatistics.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentStatistics) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentStatistics.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentStatistics) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentStatistics.Merge(m, src)
|
|
}
|
|
func (m *SegmentStatistics) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentStatistics.Size(m)
|
|
}
|
|
func (m *SegmentStatistics) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentStatistics.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentStatistics proto.InternalMessageInfo
|
|
|
|
func (m *SegmentStatistics) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentStatistics) GetSegStats() []*SegmentStatisticsUpdates {
|
|
if m != nil {
|
|
return m.SegStats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentFlushCompletedMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentFlushCompletedMsg) Reset() { *m = SegmentFlushCompletedMsg{} }
|
|
func (m *SegmentFlushCompletedMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentFlushCompletedMsg) ProtoMessage() {}
|
|
func (*SegmentFlushCompletedMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{24}
|
|
}
|
|
|
|
func (m *SegmentFlushCompletedMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentFlushCompletedMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentFlushCompletedMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentFlushCompletedMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentFlushCompletedMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentFlushCompletedMsg.Merge(m, src)
|
|
}
|
|
func (m *SegmentFlushCompletedMsg) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentFlushCompletedMsg.Size(m)
|
|
}
|
|
func (m *SegmentFlushCompletedMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentFlushCompletedMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentFlushCompletedMsg proto.InternalMessageInfo
|
|
|
|
func (m *SegmentFlushCompletedMsg) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentFlushCompletedMsg) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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_41f4a519b878ee3b, []int{25}
|
|
}
|
|
|
|
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_41f4a519b878ee3b, []int{26}
|
|
}
|
|
|
|
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_41f4a519b878ee3b, []int{27}
|
|
}
|
|
|
|
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 {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
SegStats []*SegmentStats `protobuf:"bytes,2,rep,name=seg_stats,json=segStats,proto3" json:"seg_stats,omitempty"`
|
|
FieldStats []*FieldStats `protobuf:"bytes,3,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_41f4a519b878ee3b, []int{28}
|
|
}
|
|
|
|
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) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
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 MsgPosition struct {
|
|
ChannelName string `protobuf:"bytes,1,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
|
|
MsgID []byte `protobuf:"bytes,2,opt,name=msgID,proto3" json:"msgID,omitempty"`
|
|
MsgGroup string `protobuf:"bytes,3,opt,name=msgGroup,proto3" json:"msgGroup,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *MsgPosition) Reset() { *m = MsgPosition{} }
|
|
func (m *MsgPosition) String() string { return proto.CompactTextString(m) }
|
|
func (*MsgPosition) ProtoMessage() {}
|
|
func (*MsgPosition) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{29}
|
|
}
|
|
|
|
func (m *MsgPosition) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_MsgPosition.Unmarshal(m, b)
|
|
}
|
|
func (m *MsgPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_MsgPosition.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *MsgPosition) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_MsgPosition.Merge(m, src)
|
|
}
|
|
func (m *MsgPosition) XXX_Size() int {
|
|
return xxx_messageInfo_MsgPosition.Size(m)
|
|
}
|
|
func (m *MsgPosition) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_MsgPosition.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_MsgPosition proto.InternalMessageInfo
|
|
|
|
func (m *MsgPosition) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MsgPosition) GetMsgID() []byte {
|
|
if m != nil {
|
|
return m.MsgID
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *MsgPosition) GetMsgGroup() string {
|
|
if m != nil {
|
|
return m.MsgGroup
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *MsgPosition) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ChannelTimeTickMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
ChannelNames []string `protobuf:"bytes,2,rep,name=channelNames,proto3" json:"channelNames,omitempty"`
|
|
Timestamps []uint64 `protobuf:"varint,3,rep,packed,name=timestamps,proto3" json:"timestamps,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ChannelTimeTickMsg) Reset() { *m = ChannelTimeTickMsg{} }
|
|
func (m *ChannelTimeTickMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*ChannelTimeTickMsg) ProtoMessage() {}
|
|
func (*ChannelTimeTickMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_41f4a519b878ee3b, []int{30}
|
|
}
|
|
|
|
func (m *ChannelTimeTickMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ChannelTimeTickMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *ChannelTimeTickMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ChannelTimeTickMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ChannelTimeTickMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ChannelTimeTickMsg.Merge(m, src)
|
|
}
|
|
func (m *ChannelTimeTickMsg) XXX_Size() int {
|
|
return xxx_messageInfo_ChannelTimeTickMsg.Size(m)
|
|
}
|
|
func (m *ChannelTimeTickMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ChannelTimeTickMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ChannelTimeTickMsg proto.InternalMessageInfo
|
|
|
|
func (m *ChannelTimeTickMsg) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ChannelTimeTickMsg) GetChannelNames() []string {
|
|
if m != nil {
|
|
return m.ChannelNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ChannelTimeTickMsg) GetTimestamps() []uint64 {
|
|
if m != nil {
|
|
return m.Timestamps
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("milvus.proto.internal.StateCode", StateCode_name, StateCode_value)
|
|
proto.RegisterType((*ComponentInfo)(nil), "milvus.proto.internal.ComponentInfo")
|
|
proto.RegisterType((*ComponentStates)(nil), "milvus.proto.internal.ComponentStates")
|
|
proto.RegisterType((*GetComponentStatesRequest)(nil), "milvus.proto.internal.GetComponentStatesRequest")
|
|
proto.RegisterType((*GetTimeTickChannelRequest)(nil), "milvus.proto.internal.GetTimeTickChannelRequest")
|
|
proto.RegisterType((*GetStatisticsChannelRequest)(nil), "milvus.proto.internal.GetStatisticsChannelRequest")
|
|
proto.RegisterType((*GetDdChannelRequest)(nil), "milvus.proto.internal.GetDdChannelRequest")
|
|
proto.RegisterType((*NodeInfo)(nil), "milvus.proto.internal.NodeInfo")
|
|
proto.RegisterType((*InitParams)(nil), "milvus.proto.internal.InitParams")
|
|
proto.RegisterType((*StringList)(nil), "milvus.proto.internal.StringList")
|
|
proto.RegisterType((*TimeTickMsg)(nil), "milvus.proto.internal.TimeTickMsg")
|
|
proto.RegisterType((*CreateCollectionRequest)(nil), "milvus.proto.internal.CreateCollectionRequest")
|
|
proto.RegisterType((*DropCollectionRequest)(nil), "milvus.proto.internal.DropCollectionRequest")
|
|
proto.RegisterType((*CreatePartitionRequest)(nil), "milvus.proto.internal.CreatePartitionRequest")
|
|
proto.RegisterType((*DropPartitionRequest)(nil), "milvus.proto.internal.DropPartitionRequest")
|
|
proto.RegisterType((*CreateIndexRequest)(nil), "milvus.proto.internal.CreateIndexRequest")
|
|
proto.RegisterType((*InsertRequest)(nil), "milvus.proto.internal.InsertRequest")
|
|
proto.RegisterType((*SearchRequest)(nil), "milvus.proto.internal.SearchRequest")
|
|
proto.RegisterType((*SearchResults)(nil), "milvus.proto.internal.SearchResults")
|
|
proto.RegisterType((*RetrieveRequest)(nil), "milvus.proto.internal.RetrieveRequest")
|
|
proto.RegisterType((*RetrieveResults)(nil), "milvus.proto.internal.RetrieveResults")
|
|
proto.RegisterType((*DeleteRequest)(nil), "milvus.proto.internal.DeleteRequest")
|
|
proto.RegisterType((*LoadIndex)(nil), "milvus.proto.internal.LoadIndex")
|
|
proto.RegisterType((*SegmentStatisticsUpdates)(nil), "milvus.proto.internal.SegmentStatisticsUpdates")
|
|
proto.RegisterType((*SegmentStatistics)(nil), "milvus.proto.internal.SegmentStatistics")
|
|
proto.RegisterType((*SegmentFlushCompletedMsg)(nil), "milvus.proto.internal.SegmentFlushCompletedMsg")
|
|
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((*MsgPosition)(nil), "milvus.proto.internal.MsgPosition")
|
|
proto.RegisterType((*ChannelTimeTickMsg)(nil), "milvus.proto.internal.ChannelTimeTickMsg")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("internal.proto", fileDescriptor_41f4a519b878ee3b) }
|
|
|
|
var fileDescriptor_41f4a519b878ee3b = []byte{
|
|
// 1792 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xec, 0x58, 0x5b, 0x93, 0x1b, 0x47,
|
|
0x15, 0x66, 0x24, 0xed, 0x4a, 0x3a, 0x9a, 0x5d, 0xaf, 0xdb, 0x6b, 0x67, 0xd6, 0x76, 0x12, 0x65,
|
|
0xc2, 0x65, 0x49, 0x0a, 0xaf, 0xd9, 0x00, 0x49, 0x51, 0x14, 0x4e, 0xbc, 0x4a, 0x8c, 0xca, 0x59,
|
|
0xd7, 0x32, 0x72, 0x52, 0x05, 0x2f, 0x53, 0x2d, 0x4d, 0x5b, 0x9a, 0x64, 0x6e, 0x74, 0xb7, 0xec,
|
|
0x55, 0x9e, 0x78, 0xe0, 0x09, 0x0a, 0x1e, 0xa8, 0xe2, 0x89, 0xff, 0xc0, 0x3f, 0xe0, 0x52, 0x79,
|
|
0xa2, 0x8a, 0x5f, 0xc0, 0xdf, 0xe0, 0x91, 0x17, 0xa8, 0x3e, 0xdd, 0x73, 0x91, 0x76, 0x76, 0xd9,
|
|
0xc8, 0x45, 0x81, 0x0b, 0xde, 0xa6, 0xcf, 0x39, 0x7d, 0x39, 0xdf, 0xf9, 0xfa, 0x9c, 0x33, 0x0d,
|
|
0xdb, 0x61, 0x22, 0x19, 0x4f, 0x68, 0x74, 0x27, 0xe3, 0xa9, 0x4c, 0xc9, 0xf5, 0x38, 0x8c, 0x9e,
|
|
0xce, 0x85, 0x1e, 0xdd, 0xc9, 0x95, 0x37, 0xed, 0x49, 0x1a, 0xc7, 0x69, 0xa2, 0xc5, 0x37, 0x6d,
|
|
0x31, 0x99, 0xb1, 0x98, 0xea, 0x91, 0xfb, 0x07, 0x0b, 0xb6, 0x8e, 0xd2, 0x38, 0x4b, 0x13, 0x96,
|
|
0xc8, 0x61, 0xf2, 0x24, 0x25, 0x37, 0x60, 0x33, 0x49, 0x03, 0x36, 0x1c, 0x38, 0x56, 0xdf, 0xda,
|
|
0x6f, 0x7a, 0x66, 0x44, 0x08, 0xb4, 0x78, 0x1a, 0x31, 0xa7, 0xd1, 0xb7, 0xf6, 0xbb, 0x1e, 0x7e,
|
|
0x93, 0x7b, 0x00, 0x42, 0x52, 0xc9, 0xfc, 0x49, 0x1a, 0x30, 0xa7, 0xd9, 0xb7, 0xf6, 0xb7, 0x0f,
|
|
0xfb, 0x77, 0x6a, 0x4f, 0x71, 0x67, 0xa4, 0x0c, 0x8f, 0xd2, 0x80, 0x79, 0x5d, 0x91, 0x7f, 0x92,
|
|
0x77, 0x01, 0xd8, 0xa9, 0xe4, 0xd4, 0x0f, 0x93, 0x27, 0xa9, 0xd3, 0xea, 0x37, 0xf7, 0x7b, 0x87,
|
|
0xaf, 0x2d, 0x2f, 0x60, 0x0e, 0xff, 0x90, 0x2d, 0x3e, 0xa6, 0xd1, 0x9c, 0x9d, 0xd0, 0x90, 0x7b,
|
|
0x5d, 0x9c, 0xa4, 0x8e, 0xeb, 0xfe, 0xd5, 0x82, 0x2b, 0x85, 0x03, 0xb8, 0x87, 0x20, 0xdf, 0x85,
|
|
0x0d, 0xdc, 0x02, 0x3d, 0xe8, 0x1d, 0x7e, 0xf9, 0x9c, 0x13, 0x2d, 0xf9, 0xed, 0xe9, 0x29, 0xe4,
|
|
0x23, 0xb8, 0x26, 0xe6, 0xe3, 0x49, 0xae, 0xf2, 0x51, 0x2a, 0x9c, 0x06, 0x1e, 0xed, 0x72, 0x2b,
|
|
0x91, 0xea, 0x02, 0xe6, 0x48, 0x6f, 0xc1, 0xa6, 0x5a, 0x69, 0x2e, 0x10, 0xa5, 0xde, 0xe1, 0xad,
|
|
0x5a, 0x27, 0x47, 0x68, 0xe2, 0x19, 0x53, 0xf7, 0x16, 0xec, 0x3d, 0x60, 0x72, 0xc5, 0x3b, 0x8f,
|
|
0xfd, 0x64, 0xce, 0x84, 0x34, 0xca, 0xc7, 0x61, 0xcc, 0x1e, 0x87, 0x93, 0x4f, 0x8f, 0x66, 0x34,
|
|
0x49, 0x58, 0x94, 0x2b, 0x5f, 0x86, 0x5b, 0x0f, 0x18, 0x4e, 0x08, 0x85, 0x0c, 0x27, 0x62, 0x45,
|
|
0x7d, 0x1d, 0xae, 0x3d, 0x60, 0x72, 0x10, 0xac, 0x88, 0x3f, 0x86, 0xce, 0x23, 0x15, 0x6c, 0x45,
|
|
0x83, 0xef, 0x40, 0x9b, 0x06, 0x01, 0x67, 0x42, 0x18, 0x14, 0x6f, 0xd7, 0x9e, 0xf8, 0x3d, 0x6d,
|
|
0xe3, 0xe5, 0xc6, 0x75, 0x34, 0x71, 0x3f, 0x01, 0x18, 0x26, 0xa1, 0x3c, 0xa1, 0x9c, 0xc6, 0xe2,
|
|
0x5c, 0x82, 0x0d, 0xc0, 0x16, 0x92, 0x72, 0xe9, 0x67, 0x68, 0x67, 0x20, 0xbf, 0x04, 0x1b, 0x7a,
|
|
0x38, 0x4d, 0xaf, 0xee, 0xfe, 0x08, 0x60, 0x24, 0x79, 0x98, 0x4c, 0x3f, 0x0c, 0x85, 0x54, 0x7b,
|
|
0x3d, 0x55, 0x76, 0xca, 0x89, 0xe6, 0x7e, 0xd7, 0x33, 0xa3, 0x4a, 0x38, 0x1a, 0x97, 0x0f, 0xc7,
|
|
0x3d, 0xe8, 0xe5, 0x70, 0x1f, 0x8b, 0x29, 0xb9, 0x0b, 0xad, 0x31, 0x15, 0xec, 0x42, 0x78, 0x8e,
|
|
0xc5, 0xf4, 0x3e, 0x15, 0xcc, 0x43, 0x4b, 0xf7, 0xf3, 0x06, 0xbc, 0x74, 0xc4, 0x19, 0x92, 0x3f,
|
|
0x8a, 0xd8, 0x44, 0x86, 0x69, 0x62, 0xb0, 0xff, 0xe2, 0xab, 0x91, 0x97, 0xa0, 0x1d, 0x8c, 0xfd,
|
|
0x84, 0xc6, 0x39, 0xd8, 0x9b, 0xc1, 0xf8, 0x11, 0x8d, 0x19, 0xf9, 0x2a, 0x6c, 0x4f, 0x8a, 0xf5,
|
|
0x95, 0x04, 0x39, 0xd7, 0xf5, 0x56, 0xa4, 0x2a, 0x54, 0xc1, 0x78, 0x38, 0x70, 0x5a, 0x18, 0x06,
|
|
0xfc, 0x26, 0x2e, 0xd8, 0xa5, 0xd5, 0x70, 0xe0, 0x6c, 0xa0, 0x6e, 0x49, 0xa6, 0x40, 0xd5, 0x39,
|
|
0xc4, 0xd9, 0xec, 0x5b, 0xfb, 0xb6, 0x67, 0x46, 0xe4, 0x2e, 0x5c, 0x7b, 0x1a, 0x72, 0x39, 0xa7,
|
|
0x91, 0xe1, 0x95, 0xda, 0x45, 0x38, 0x6d, 0x44, 0xbe, 0x4e, 0x45, 0x0e, 0x61, 0x37, 0x9b, 0x2d,
|
|
0x44, 0x38, 0x59, 0x99, 0xd2, 0xc1, 0x29, 0xb5, 0x3a, 0xf7, 0x73, 0x0b, 0xae, 0x0f, 0x78, 0x9a,
|
|
0xbd, 0xc8, 0x10, 0xba, 0xbf, 0x6c, 0xc0, 0x0d, 0xcd, 0x84, 0x13, 0xca, 0x65, 0xf8, 0x6f, 0xf2,
|
|
0xe2, 0x6b, 0x70, 0xa5, 0xdc, 0x55, 0x1b, 0xd4, 0xbb, 0xf1, 0x15, 0xd8, 0xce, 0xf2, 0x73, 0x68,
|
|
0xbb, 0x16, 0xda, 0x6d, 0x15, 0xd2, 0x25, 0x6f, 0x37, 0x2e, 0xf0, 0x76, 0xb3, 0x86, 0x30, 0x7d,
|
|
0xe8, 0x15, 0x0b, 0x0d, 0x07, 0x4e, 0x1b, 0x4d, 0xaa, 0x22, 0xf7, 0x17, 0x0d, 0xd8, 0x55, 0x41,
|
|
0xfd, 0x3f, 0x1a, 0x0a, 0x8d, 0x3f, 0x36, 0x80, 0x68, 0x76, 0x0c, 0x93, 0x80, 0x9d, 0xfe, 0x27,
|
|
0xb1, 0x78, 0x19, 0xe0, 0x49, 0xc8, 0xa2, 0xa0, 0x8a, 0x43, 0x17, 0x25, 0xcf, 0x85, 0x81, 0x03,
|
|
0x6d, 0x5c, 0xa4, 0xf0, 0x3f, 0x1f, 0xaa, 0x2a, 0xa0, 0x3b, 0x02, 0x53, 0x05, 0x3a, 0x97, 0xae,
|
|
0x02, 0x38, 0xcd, 0x54, 0x81, 0xdf, 0x35, 0x61, 0x6b, 0x98, 0x08, 0xc6, 0xe5, 0xff, 0x32, 0x91,
|
|
0xc8, 0x6d, 0xe8, 0x0a, 0x36, 0x8d, 0x55, 0x63, 0x32, 0x70, 0x3a, 0xa8, 0x2f, 0x05, 0x4a, 0x3b,
|
|
0xd1, 0x99, 0x75, 0x38, 0x70, 0xba, 0x3a, 0xb4, 0x85, 0x80, 0xbc, 0x02, 0x20, 0xc3, 0x98, 0x09,
|
|
0x49, 0xe3, 0x4c, 0x38, 0xd0, 0x6f, 0xee, 0xb7, 0xbc, 0x8a, 0x44, 0x55, 0x01, 0x9e, 0x3e, 0x1b,
|
|
0x0e, 0x84, 0xd3, 0xeb, 0x37, 0x55, 0x19, 0xd7, 0x23, 0xf2, 0x2d, 0xe8, 0xf0, 0xf4, 0x99, 0x1f,
|
|
0x50, 0x49, 0x1d, 0x1b, 0x83, 0xb7, 0x57, 0x0b, 0xf6, 0xfd, 0x28, 0x1d, 0x7b, 0x6d, 0x9e, 0x3e,
|
|
0x1b, 0x50, 0x49, 0xdd, 0xbf, 0x35, 0x60, 0x6b, 0xc4, 0x28, 0x9f, 0xcc, 0xd6, 0x0f, 0xd8, 0xd7,
|
|
0x61, 0x87, 0x33, 0x31, 0x8f, 0xa4, 0x5f, 0xba, 0xa5, 0x23, 0x77, 0x45, 0xcb, 0x8f, 0x0a, 0xe7,
|
|
0x72, 0xc8, 0x9b, 0x17, 0x40, 0xde, 0xaa, 0x81, 0xdc, 0x05, 0xbb, 0x82, 0xaf, 0x70, 0x36, 0xd0,
|
|
0xf5, 0x25, 0x19, 0xd9, 0x81, 0x66, 0x20, 0x22, 0x8c, 0x58, 0xd7, 0x53, 0x9f, 0xe4, 0x4d, 0xb8,
|
|
0x9a, 0x45, 0x74, 0xc2, 0x66, 0x69, 0x14, 0x30, 0xee, 0x4f, 0x79, 0x3a, 0xcf, 0x30, 0x5c, 0xb6,
|
|
0xb7, 0x53, 0x51, 0x3c, 0x50, 0x72, 0xf2, 0x36, 0x74, 0x02, 0x11, 0xf9, 0x72, 0x91, 0x31, 0x0c,
|
|
0xd9, 0xf6, 0x39, 0xbe, 0x0f, 0x44, 0xf4, 0x78, 0x91, 0x31, 0xaf, 0x1d, 0xe8, 0x0f, 0x72, 0x17,
|
|
0x76, 0x05, 0xe3, 0x21, 0x8d, 0xc2, 0xcf, 0x58, 0xe0, 0xb3, 0xd3, 0x8c, 0xfb, 0x59, 0x44, 0x13,
|
|
0x8c, 0xac, 0xed, 0x91, 0x52, 0xf7, 0xfe, 0x69, 0xc6, 0x4f, 0x22, 0x9a, 0xb8, 0xff, 0xa8, 0x80,
|
|
0xae, 0xf0, 0x11, 0x6b, 0x80, 0xbe, 0x4e, 0x27, 0x55, 0x1b, 0xa9, 0x66, 0x7d, 0xa4, 0x5e, 0x85,
|
|
0x5e, 0xcc, 0x24, 0x0f, 0x27, 0x1a, 0x11, 0x7d, 0x81, 0x40, 0x8b, 0xd0, 0x6d, 0x02, 0xad, 0x59,
|
|
0x28, 0x75, 0x28, 0x6c, 0x0f, 0xbf, 0xc9, 0xf7, 0xe0, 0xa6, 0x60, 0x34, 0x62, 0x81, 0x5f, 0xb0,
|
|
0x5d, 0xf8, 0x02, 0x3d, 0x65, 0x81, 0xb3, 0x89, 0x41, 0x73, 0xb4, 0xc5, 0xa8, 0x30, 0x18, 0x19,
|
|
0x3d, 0x39, 0x80, 0x6b, 0xc5, 0xb1, 0x2a, 0xd3, 0x74, 0x1f, 0x43, 0x4a, 0x55, 0x31, 0xe1, 0x1d,
|
|
0x70, 0xa6, 0x51, 0x3a, 0xa6, 0x91, 0x7f, 0x66, 0x57, 0xcc, 0x5f, 0x4d, 0xef, 0x86, 0xd6, 0x8f,
|
|
0x56, 0xb6, 0x74, 0x7f, 0xdb, 0x80, 0x2b, 0x9e, 0xf2, 0x85, 0x3d, 0x65, 0x2f, 0x3c, 0xf1, 0xdf,
|
|
0x80, 0x66, 0x18, 0x08, 0x24, 0x7e, 0xef, 0xd0, 0x59, 0x3e, 0xb7, 0xf9, 0xe9, 0x1c, 0x0e, 0x84,
|
|
0xa7, 0x8c, 0xc8, 0xeb, 0xb0, 0x95, 0xce, 0x65, 0x36, 0x97, 0x3e, 0x26, 0xfe, 0xbc, 0x4b, 0xb4,
|
|
0xb5, 0xf0, 0x03, 0x94, 0xb9, 0xbf, 0x6f, 0x56, 0xd1, 0xf9, 0x6f, 0x65, 0xa8, 0x71, 0xbb, 0x75,
|
|
0x19, 0xb7, 0xef, 0x41, 0x4f, 0xfb, 0xab, 0xf3, 0xe3, 0x06, 0xe6, 0xc7, 0x57, 0x6a, 0xe7, 0x20,
|
|
0x06, 0x2a, 0x37, 0x7a, 0xba, 0x02, 0x0b, 0xf5, 0x4d, 0xbe, 0x0f, 0xb7, 0xce, 0x32, 0x9b, 0x1b,
|
|
0x8c, 0x72, 0x6a, 0xef, 0xad, 0x52, 0x3b, 0x07, 0x31, 0x20, 0xdf, 0x84, 0xdd, 0x0a, 0xb7, 0xcb,
|
|
0x89, 0xa6, 0x49, 0x2f, 0x75, 0xe5, 0x94, 0xf5, 0xd9, 0xfd, 0x17, 0x0b, 0xb6, 0x06, 0x2c, 0x62,
|
|
0xf2, 0x39, 0xb8, 0x5d, 0x53, 0x6c, 0x1b, 0xb5, 0xc5, 0x76, 0xa9, 0x9a, 0x35, 0x2f, 0xae, 0x66,
|
|
0xad, 0x33, 0xd5, 0xec, 0x35, 0xb0, 0x33, 0x1e, 0xc6, 0x94, 0x2f, 0xfc, 0x4f, 0xd9, 0x22, 0xe7,
|
|
0x77, 0xcf, 0xc8, 0x1e, 0xb2, 0x85, 0x70, 0xff, 0x6e, 0x41, 0xf7, 0xc3, 0x94, 0x06, 0xd8, 0x93,
|
|
0xad, 0xe1, 0xc9, 0x52, 0x31, 0x6e, 0xd4, 0x14, 0xe3, 0xa2, 0xad, 0xca, 0x8f, 0x5f, 0xf6, 0x59,
|
|
0x95, 0x7e, 0xa9, 0xb5, 0xdc, 0x2f, 0xbd, 0x0a, 0xbd, 0x50, 0x1d, 0xc8, 0xcf, 0xa8, 0x9c, 0xe9,
|
|
0x73, 0x77, 0x3d, 0x40, 0xd1, 0x89, 0x92, 0xa8, 0x86, 0x2a, 0x37, 0xc0, 0x86, 0x6a, 0xf3, 0xd2,
|
|
0x0d, 0x95, 0x59, 0x04, 0x1b, 0xaa, 0x3f, 0x35, 0xc0, 0x31, 0x91, 0x2d, 0x5f, 0x15, 0x3e, 0xca,
|
|
0x02, 0x7c, 0xdc, 0xb8, 0x0d, 0xdd, 0x22, 0xea, 0xe6, 0xa7, 0xbe, 0x14, 0x28, 0xe8, 0x8f, 0x59,
|
|
0x9c, 0xf2, 0xc5, 0x28, 0xfc, 0x8c, 0x19, 0xc7, 0x2b, 0x12, 0xe5, 0xdb, 0xa3, 0x79, 0xec, 0xa5,
|
|
0xcf, 0x84, 0xc9, 0x4a, 0xf9, 0x50, 0xf9, 0x36, 0xc1, 0x36, 0xd8, 0x57, 0x91, 0x42, 0xcf, 0x5b,
|
|
0x1e, 0x68, 0x91, 0xfa, 0x13, 0x27, 0x7b, 0xd0, 0x61, 0x49, 0xa0, 0xb5, 0x1b, 0xa8, 0x6d, 0xb3,
|
|
0x24, 0x40, 0xd5, 0x10, 0xb6, 0xcd, 0x6b, 0x42, 0x2a, 0x30, 0x43, 0x99, 0xbc, 0xe4, 0x9e, 0xf3,
|
|
0x84, 0x73, 0x2c, 0xa6, 0x27, 0xc6, 0xd2, 0xdb, 0xd2, 0x0f, 0x0a, 0x66, 0x48, 0xde, 0x07, 0x5b,
|
|
0xed, 0x52, 0x2c, 0xd4, 0xbe, 0xf4, 0x42, 0x3d, 0x96, 0x04, 0xf9, 0xc0, 0xfd, 0xb5, 0x05, 0x57,
|
|
0xcf, 0x40, 0xb8, 0x06, 0x8f, 0x1e, 0x42, 0x67, 0xc4, 0xa6, 0x6a, 0x89, 0xfc, 0x8d, 0xe4, 0xe0,
|
|
0xbc, 0x27, 0xb7, 0x73, 0x02, 0xe6, 0x15, 0x0b, 0xb8, 0x9f, 0x14, 0x61, 0xfd, 0x20, 0x9a, 0x8b,
|
|
0xd9, 0x51, 0x1a, 0x67, 0xea, 0xbe, 0x06, 0x6b, 0x3d, 0x70, 0x5c, 0x4c, 0x71, 0xf7, 0x67, 0x16,
|
|
0x00, 0x5e, 0x1e, 0xdc, 0xfa, 0x0c, 0x31, 0xad, 0x75, 0x88, 0xa9, 0xba, 0x9e, 0x64, 0x1e, 0xfb,
|
|
0x9c, 0x45, 0x54, 0x96, 0xb9, 0x49, 0x98, 0xdd, 0x49, 0x32, 0x8f, 0x3d, 0xad, 0x32, 0x6e, 0x0a,
|
|
0xf7, 0x57, 0x16, 0x00, 0x26, 0x57, 0x7d, 0x8c, 0xd5, 0xea, 0x67, 0x5d, 0xfc, 0xbb, 0xd2, 0x58,
|
|
0xbe, 0x7e, 0xf7, 0xf3, 0xeb, 0x27, 0x30, 0x1e, 0xcd, 0x3a, 0x1f, 0x8a, 0x78, 0x94, 0xce, 0x9b,
|
|
0x1b, 0xaa, 0x63, 0xf0, 0x1b, 0x0b, 0xec, 0x4a, 0xa8, 0xc4, 0x32, 0x8c, 0xd6, 0x6a, 0xa6, 0xc0,
|
|
0x8e, 0x48, 0xdd, 0x1e, 0x5f, 0x54, 0x2e, 0x54, 0x5c, 0x5e, 0xa8, 0x3d, 0xe8, 0x20, 0x24, 0x95,
|
|
0x1b, 0x95, 0x98, 0x1b, 0xf5, 0x26, 0x5c, 0xe5, 0x6c, 0xc2, 0x12, 0x19, 0x2d, 0xfc, 0x38, 0x0d,
|
|
0xc2, 0x27, 0x21, 0x0b, 0xf0, 0x5e, 0x75, 0xbc, 0x9d, 0x5c, 0x71, 0x6c, 0xe4, 0xee, 0x9f, 0x2d,
|
|
0xd8, 0xfe, 0xe1, 0x9c, 0xf1, 0xc5, 0xa3, 0x34, 0x60, 0xfa, 0x64, 0x5f, 0x9c, 0x12, 0xef, 0xa2,
|
|
0x2f, 0x06, 0x1e, 0x4d, 0xd7, 0xd7, 0xff, 0x35, 0x5d, 0x85, 0xd7, 0x11, 0x86, 0xa2, 0x0a, 0x62,
|
|
0xfd, 0x0b, 0x7a, 0x19, 0x88, 0xcb, 0xc0, 0x9a, 0xb2, 0xa9, 0x21, 0xfe, 0xa9, 0x05, 0xbd, 0xca,
|
|
0xc5, 0x54, 0xe9, 0xde, 0xd4, 0x06, 0x5d, 0x52, 0x2c, 0x4c, 0xb8, 0xbd, 0x49, 0xf9, 0xd0, 0x44,
|
|
0x76, 0x61, 0x23, 0x16, 0x53, 0x13, 0x71, 0xdb, 0xd3, 0x03, 0x72, 0x13, 0x3a, 0xb1, 0x98, 0x62,
|
|
0xa7, 0x6e, 0xb2, 0x74, 0x31, 0x56, 0x61, 0x2b, 0x2a, 0x8a, 0x49, 0x56, 0xa5, 0xc0, 0xfd, 0xb9,
|
|
0x05, 0xc4, 0x34, 0x0d, 0xcf, 0xf5, 0x8a, 0x88, 0x84, 0xad, 0x3e, 0x96, 0x35, 0x74, 0xe7, 0x54,
|
|
0x95, 0xad, 0x94, 0xbb, 0xe6, 0x6a, 0xb9, 0x7b, 0xe3, 0x1d, 0xe8, 0x16, 0xef, 0xf1, 0x64, 0x07,
|
|
0xec, 0x61, 0x12, 0x4a, 0xfc, 0x3b, 0x08, 0x93, 0xe9, 0xce, 0x97, 0x48, 0x0f, 0xda, 0x3f, 0x60,
|
|
0x34, 0x92, 0xb3, 0xc5, 0x8e, 0x45, 0x6c, 0xe8, 0xbc, 0x37, 0x4e, 0x52, 0x1e, 0xd3, 0x68, 0xa7,
|
|
0x71, 0xff, 0xed, 0x1f, 0x7f, 0x7b, 0x1a, 0xca, 0xd9, 0x7c, 0xac, 0x0e, 0x77, 0xa0, 0x4f, 0xfb,
|
|
0x8d, 0x30, 0x35, 0x5f, 0x07, 0x79, 0x20, 0x0e, 0xd0, 0x81, 0x62, 0x98, 0x8d, 0xc7, 0x9b, 0x28,
|
|
0x79, 0xeb, 0x9f, 0x01, 0x00, 0x00, 0xff, 0xff, 0x27, 0x85, 0x87, 0x17, 0xb5, 0x18, 0x00, 0x00,
|
|
}
|