mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-07 19:31:51 +08:00
1665 lines
58 KiB
Go
1665 lines
58 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 ReqType int32
|
|
|
|
const (
|
|
ReqType_kNone ReqType = 0
|
|
// Definition Requests: collection
|
|
ReqType_kCreateCollection ReqType = 100
|
|
ReqType_kDropCollection ReqType = 101
|
|
ReqType_kHasCollection ReqType = 102
|
|
ReqType_kDescribeCollection ReqType = 103
|
|
ReqType_kShowCollections ReqType = 104
|
|
// Definition Requests: partition
|
|
ReqType_kCreatePartition ReqType = 200
|
|
ReqType_kDropPartition ReqType = 201
|
|
ReqType_kHasPartition ReqType = 202
|
|
ReqType_kDescribePartition ReqType = 203
|
|
ReqType_kShowPartitions ReqType = 204
|
|
// Manipulation Requests
|
|
ReqType_kInsert ReqType = 400
|
|
// Query
|
|
ReqType_kSearch ReqType = 500
|
|
)
|
|
|
|
var ReqType_name = map[int32]string{
|
|
0: "kNone",
|
|
100: "kCreateCollection",
|
|
101: "kDropCollection",
|
|
102: "kHasCollection",
|
|
103: "kDescribeCollection",
|
|
104: "kShowCollections",
|
|
200: "kCreatePartition",
|
|
201: "kDropPartition",
|
|
202: "kHasPartition",
|
|
203: "kDescribePartition",
|
|
204: "kShowPartitions",
|
|
400: "kInsert",
|
|
500: "kSearch",
|
|
}
|
|
|
|
var ReqType_value = map[string]int32{
|
|
"kNone": 0,
|
|
"kCreateCollection": 100,
|
|
"kDropCollection": 101,
|
|
"kHasCollection": 102,
|
|
"kDescribeCollection": 103,
|
|
"kShowCollections": 104,
|
|
"kCreatePartition": 200,
|
|
"kDropPartition": 201,
|
|
"kHasPartition": 202,
|
|
"kDescribePartition": 203,
|
|
"kShowPartitions": 204,
|
|
"kInsert": 400,
|
|
"kSearch": 500,
|
|
}
|
|
|
|
func (x ReqType) String() string {
|
|
return proto.EnumName(ReqType_name, int32(x))
|
|
}
|
|
|
|
func (ReqType) 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 TimestampMsg struct {
|
|
Physical int64 `protobuf:"varint,1,opt,name=physical,proto3" json:"physical,omitempty"`
|
|
Logical int64 `protobuf:"varint,2,opt,name=logical,proto3" json:"logical,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *TimestampMsg) Reset() { *m = TimestampMsg{} }
|
|
func (m *TimestampMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*TimestampMsg) ProtoMessage() {}
|
|
func (*TimestampMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{0}
|
|
}
|
|
|
|
func (m *TimestampMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_TimestampMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *TimestampMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_TimestampMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *TimestampMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TimestampMsg.Merge(m, src)
|
|
}
|
|
func (m *TimestampMsg) XXX_Size() int {
|
|
return xxx_messageInfo_TimestampMsg.Size(m)
|
|
}
|
|
func (m *TimestampMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TimestampMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TimestampMsg proto.InternalMessageInfo
|
|
|
|
func (m *TimestampMsg) GetPhysical() int64 {
|
|
if m != nil {
|
|
return m.Physical
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TimestampMsg) GetLogical() int64 {
|
|
if m != nil {
|
|
return m.Logical
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type TsoRequest struct {
|
|
PeerId int64 `protobuf:"varint,1,opt,name=peer_id,json=peerId,proto3" json:"peer_id,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{1}
|
|
}
|
|
|
|
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 *TimestampMsg `protobuf:"bytes,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{2}
|
|
}
|
|
|
|
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() *TimestampMsg {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *TsoResponse) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type CreateCollectionRequest struct {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,omitempty"`
|
|
Schema *commonpb.Blob `protobuf:"bytes,5,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{3}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *CreateCollectionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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 *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{4}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *DropCollectionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{5}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *HasCollectionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{6}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *DescribeCollectionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{7}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *ShowCollectionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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 *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{8}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *CreatePartitionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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 *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{9}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *DropPartitionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{10}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *HasPartitionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{11}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *DescribePartitionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,4,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,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{12}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *ShowPartitionRequest) GetReqId() uint64 {
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,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 uint64 `protobuf:"varint,5,opt,name=segment_id,json=segmentId,proto3" json:"segment_id,omitempty"`
|
|
ChannelId uint64 `protobuf:"varint,6,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,7,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,8,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
RowIds []int64 `protobuf:"varint,9,rep,packed,name=row_ids,json=rowIds,proto3" json:"row_ids,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{13}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *InsertRequest) GetReqId() uint64 {
|
|
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() uint64 {
|
|
if m != nil {
|
|
return m.SegmentId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetChannelId() uint64 {
|
|
if m != nil {
|
|
return m.ChannelId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetProxyId() int64 {
|
|
if m != nil {
|
|
return m.ProxyId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *InsertRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
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 {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
|
ChannelId uint64 `protobuf:"varint,4,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,5,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,6,opt,name=timestamp,proto3" json:"timestamp,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{14}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *DeleteRequest) GetReqId() uint64 {
|
|
if m != nil {
|
|
return m.ReqId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetCollectionName() string {
|
|
if m != nil {
|
|
return m.CollectionName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeleteRequest) GetChannelId() uint64 {
|
|
if m != nil {
|
|
return m.ChannelId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetProxyId() int64 {
|
|
if m != nil {
|
|
return m.ProxyId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeleteRequest) GetPrimaryKeys() []int64 {
|
|
if m != nil {
|
|
return m.PrimaryKeys
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SearchRequest struct {
|
|
ReqType ReqType `protobuf:"varint,1,opt,name=req_type,json=reqType,proto3,enum=milvus.proto.internal.ReqType" json:"req_type,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,3,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,4,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ResultChannelId uint64 `protobuf:"varint,5,opt,name=result_channel_id,json=resultChannelId,proto3" json:"result_channel_id,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{15}
|
|
}
|
|
|
|
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) GetReqType() ReqType {
|
|
if m != nil {
|
|
return m.ReqType
|
|
}
|
|
return ReqType_kNone
|
|
}
|
|
|
|
func (m *SearchRequest) GetReqId() uint64 {
|
|
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() uint64 {
|
|
if m != nil {
|
|
return m.ResultChannelId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchRequest) GetQuery() *commonpb.Blob {
|
|
if m != nil {
|
|
return m.Query
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SearchResult struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
ReqId uint64 `protobuf:"varint,2,opt,name=req_id,json=reqId,proto3" json:"req_id,omitempty"`
|
|
ProxyId int64 `protobuf:"varint,3,opt,name=proxy_id,json=proxyId,proto3" json:"proxy_id,omitempty"`
|
|
QueryNodeId int64 `protobuf:"varint,4,opt,name=query_node_id,json=queryNodeId,proto3" json:"query_node_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,5,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
ResultChannelId uint64 `protobuf:"varint,6,opt,name=result_channel_id,json=resultChannelId,proto3" json:"result_channel_id,omitempty"`
|
|
Hits []*servicepb.Hits `protobuf:"bytes,7,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{16}
|
|
}
|
|
|
|
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) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SearchResult) GetReqId() uint64 {
|
|
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() uint64 {
|
|
if m != nil {
|
|
return m.ResultChannelId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SearchResult) GetHits() []*servicepb.Hits {
|
|
if m != nil {
|
|
return m.Hits
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type TimeSyncMsg struct {
|
|
PeerId int64 `protobuf:"varint,1,opt,name=peer_id,json=peerId,proto3" json:"peer_id,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,2,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *TimeSyncMsg) Reset() { *m = TimeSyncMsg{} }
|
|
func (m *TimeSyncMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*TimeSyncMsg) ProtoMessage() {}
|
|
func (*TimeSyncMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_7eb37f6b80b23116, []int{17}
|
|
}
|
|
|
|
func (m *TimeSyncMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_TimeSyncMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *TimeSyncMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_TimeSyncMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *TimeSyncMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_TimeSyncMsg.Merge(m, src)
|
|
}
|
|
func (m *TimeSyncMsg) XXX_Size() int {
|
|
return xxx_messageInfo_TimeSyncMsg.Size(m)
|
|
}
|
|
func (m *TimeSyncMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_TimeSyncMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_TimeSyncMsg proto.InternalMessageInfo
|
|
|
|
func (m *TimeSyncMsg) GetPeerId() int64 {
|
|
if m != nil {
|
|
return m.PeerId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *TimeSyncMsg) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type Key2Seg struct {
|
|
RowId int64 `protobuf:"varint,1,opt,name=row_id,json=rowId,proto3" json:"row_id,omitempty"`
|
|
PrimaryKey uint64 `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 []uint64 `protobuf:"varint,5,rep,packed,name=segment_ids,json=segmentIds,proto3" json:"segment_ids,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *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{18}
|
|
}
|
|
|
|
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() uint64 {
|
|
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() []uint64 {
|
|
if m != nil {
|
|
return m.SegmentIds
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Key2SegMsg struct {
|
|
ReqId uint64 `protobuf:"varint,1,opt,name=req_id,json=reqId,proto3" json:"req_id,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{19}
|
|
}
|
|
|
|
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() uint64 {
|
|
if m != nil {
|
|
return m.ReqId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Key2SegMsg) GetKey2Seg() []*Key2Seg {
|
|
if m != nil {
|
|
return m.Key2Seg
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentStatistics struct {
|
|
SegmentId uint64 `protobuf:"varint,1,opt,name=segment_id,json=segmentId,proto3" json:"segment_id,omitempty"`
|
|
MemorySize uint64 `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"`
|
|
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_7eb37f6b80b23116, []int{20}
|
|
}
|
|
|
|
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) GetSegmentId() uint64 {
|
|
if m != nil {
|
|
return m.SegmentId
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatistics) GetMemorySize() uint64 {
|
|
if m != nil {
|
|
return m.MemorySize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStatistics) GetNumRows() int64 {
|
|
if m != nil {
|
|
return m.NumRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("milvus.proto.internal.ReqType", ReqType_name, ReqType_value)
|
|
proto.RegisterEnum("milvus.proto.internal.PeerRole", PeerRole_name, PeerRole_value)
|
|
proto.RegisterType((*TimestampMsg)(nil), "milvus.proto.internal.TimestampMsg")
|
|
proto.RegisterType((*TsoRequest)(nil), "milvus.proto.internal.TsoRequest")
|
|
proto.RegisterType((*TsoResponse)(nil), "milvus.proto.internal.TsoResponse")
|
|
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((*SearchResult)(nil), "milvus.proto.internal.SearchResult")
|
|
proto.RegisterType((*TimeSyncMsg)(nil), "milvus.proto.internal.TimeSyncMsg")
|
|
proto.RegisterType((*Key2Seg)(nil), "milvus.proto.internal.Key2Seg")
|
|
proto.RegisterType((*Key2SegMsg)(nil), "milvus.proto.internal.Key2SegMsg")
|
|
proto.RegisterType((*SegmentStatistics)(nil), "milvus.proto.internal.SegmentStatistics")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("internal_msg.proto", fileDescriptor_7eb37f6b80b23116) }
|
|
|
|
var fileDescriptor_7eb37f6b80b23116 = []byte{
|
|
// 1163 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe4, 0x58, 0xcd, 0x6f, 0x1b, 0x45,
|
|
0x14, 0xef, 0xda, 0xf1, 0x47, 0x9e, 0xe3, 0x64, 0x33, 0x89, 0x89, 0x1b, 0x0a, 0x0d, 0x5b, 0x24,
|
|
0xaa, 0x4a, 0x38, 0xc2, 0xe5, 0x40, 0x8f, 0xb4, 0x3e, 0xd4, 0x54, 0xad, 0xaa, 0x75, 0x04, 0x12,
|
|
0x12, 0x5a, 0xad, 0x77, 0x1f, 0xf6, 0x68, 0x3f, 0x66, 0x33, 0x33, 0x6e, 0xd8, 0xdc, 0xb9, 0x22,
|
|
0x24, 0x8e, 0xdc, 0xf8, 0x6b, 0xf8, 0xba, 0xf3, 0x4f, 0x80, 0xa0, 0x12, 0x88, 0x2b, 0x9a, 0xd9,
|
|
0x5d, 0xdb, 0xeb, 0x26, 0xe1, 0x43, 0x54, 0x8a, 0x94, 0x9b, 0xdf, 0x9b, 0x99, 0x37, 0xbf, 0xdf,
|
|
0xef, 0xcd, 0xbc, 0x9d, 0x67, 0x20, 0x34, 0x96, 0xc8, 0x63, 0x37, 0x74, 0x22, 0x31, 0xe9, 0x25,
|
|
0x9c, 0x49, 0x46, 0x3a, 0x11, 0x0d, 0x9f, 0xcd, 0x44, 0x66, 0xf5, 0x8a, 0x09, 0xfb, 0x1b, 0x1e,
|
|
0x8b, 0x22, 0x16, 0x67, 0xee, 0xfd, 0x6d, 0x81, 0xfc, 0x19, 0xf5, 0x70, 0xb1, 0xce, 0x1a, 0xc0,
|
|
0xc6, 0x11, 0x8d, 0x50, 0x48, 0x37, 0x4a, 0x1e, 0x8b, 0x09, 0xd9, 0x87, 0x66, 0x32, 0x4d, 0x05,
|
|
0xf5, 0xdc, 0xb0, 0x6b, 0x1c, 0x18, 0xb7, 0xab, 0xf6, 0xdc, 0x26, 0x5d, 0x68, 0x84, 0x6c, 0xa2,
|
|
0x87, 0x2a, 0x7a, 0xa8, 0x30, 0xad, 0x04, 0xe0, 0x48, 0x30, 0x1b, 0x8f, 0x67, 0x28, 0x24, 0xd9,
|
|
0x83, 0x46, 0x82, 0xc8, 0x1d, 0xea, 0xe7, 0x21, 0xea, 0xca, 0x1c, 0xfa, 0xe4, 0x2e, 0xac, 0x71,
|
|
0x16, 0xa2, 0x5e, 0xbd, 0xd9, 0xbf, 0xd9, 0x3b, 0x13, 0x73, 0xef, 0x29, 0x22, 0xb7, 0x59, 0x88,
|
|
0xb6, 0x9e, 0x4c, 0x76, 0xa1, 0xe6, 0xb1, 0x59, 0x2c, 0xbb, 0xd5, 0x03, 0xe3, 0x76, 0xdb, 0xce,
|
|
0x0c, 0xeb, 0x6b, 0x03, 0x5a, 0x7a, 0x4b, 0x91, 0xb0, 0x58, 0x20, 0xb9, 0x0b, 0x75, 0x21, 0x5d,
|
|
0x39, 0x13, 0x7a, 0xcb, 0x56, 0xff, 0xd5, 0x72, 0xf0, 0x5c, 0x86, 0x91, 0x9e, 0x62, 0xe7, 0x53,
|
|
0xc9, 0xfb, 0xb0, 0x2e, 0x0b, 0xf2, 0x1a, 0x54, 0xab, 0x7f, 0xeb, 0x1c, 0x50, 0xcb, 0x22, 0xd9,
|
|
0x8b, 0x55, 0xe7, 0xa0, 0xfb, 0xc9, 0x80, 0xbd, 0x07, 0x1c, 0x5d, 0x89, 0x0f, 0x58, 0x18, 0xa2,
|
|
0x27, 0x29, 0x8b, 0x0b, 0x75, 0xee, 0x41, 0x93, 0xe3, 0xb1, 0x23, 0xd3, 0x04, 0x35, 0xd6, 0xcd,
|
|
0xfe, 0xeb, 0xe7, 0xec, 0x69, 0xe3, 0xf1, 0x51, 0x9a, 0xa0, 0xdd, 0xe0, 0xd9, 0x0f, 0xd2, 0x81,
|
|
0xba, 0x5a, 0x4a, 0x7d, 0x0d, 0x76, 0xcd, 0xae, 0x71, 0x3c, 0x1e, 0xfa, 0xe4, 0xc6, 0x32, 0x8d,
|
|
0xaa, 0x1e, 0x59, 0x42, 0x78, 0x1d, 0x9a, 0x09, 0x67, 0x9f, 0xa5, 0x6a, 0xd9, 0x5a, 0x96, 0x36,
|
|
0x6d, 0x0f, 0x7d, 0xf2, 0x0e, 0xd4, 0x85, 0x37, 0xc5, 0xc8, 0xed, 0xd6, 0x34, 0xf9, 0xeb, 0x67,
|
|
0x8a, 0x76, 0x3f, 0x64, 0x63, 0x3b, 0x9f, 0x68, 0x3d, 0x37, 0xa0, 0x33, 0xe0, 0x2c, 0xb9, 0xd4,
|
|
0xbc, 0x1e, 0xc3, 0x96, 0x37, 0xc7, 0xe7, 0xc4, 0x6e, 0x84, 0x39, 0xc1, 0x37, 0xcb, 0x88, 0xf2,
|
|
0xeb, 0xd0, 0x5b, 0x90, 0x79, 0xe2, 0x46, 0x68, 0x6f, 0x7a, 0x25, 0xdb, 0xfa, 0xcd, 0x80, 0xdd,
|
|
0x87, 0xae, 0xb8, 0x4a, 0x94, 0xff, 0x30, 0xe0, 0xfa, 0x00, 0x85, 0xc7, 0xe9, 0x18, 0xaf, 0x12,
|
|
0xef, 0x6f, 0x0c, 0xe8, 0x8c, 0xa6, 0xec, 0xe4, 0x32, 0x73, 0xb6, 0x7e, 0x35, 0xe0, 0x95, 0xac,
|
|
0xba, 0x3c, 0x75, 0xb9, 0xa4, 0x97, 0x34, 0x33, 0x1f, 0xc0, 0x66, 0x52, 0xc0, 0x5b, 0x4e, 0xcc,
|
|
0xad, 0xb3, 0x13, 0x33, 0xa7, 0xa2, 0xf3, 0xd2, 0x4e, 0x96, 0x4d, 0xeb, 0x17, 0x03, 0x76, 0x55,
|
|
0xd5, 0xb9, 0x2a, 0x7c, 0x7f, 0x36, 0x60, 0xe7, 0xa1, 0x2b, 0xae, 0x0a, 0xdd, 0xe7, 0x06, 0x74,
|
|
0x8b, 0x6a, 0x73, 0x55, 0x38, 0xab, 0x8f, 0x8a, 0xaa, 0x34, 0x97, 0x99, 0xef, 0xff, 0xfd, 0x51,
|
|
0xa9, 0x40, 0x7b, 0x18, 0x0b, 0xe4, 0xf2, 0xe5, 0x71, 0x7d, 0xeb, 0x45, 0xc8, 0x8a, 0xf1, 0xfa,
|
|
0x2a, 0x18, 0x72, 0x0b, 0x16, 0x09, 0x71, 0xa4, 0x3b, 0xd1, 0xdc, 0xd7, 0xed, 0x8d, 0xb9, 0xf3,
|
|
0xc8, 0x9d, 0x90, 0xd7, 0x00, 0x04, 0x4e, 0x22, 0x8c, 0xa5, 0xda, 0xa8, 0x96, 0x49, 0x97, 0x7b,
|
|
0x86, 0xbe, 0x1a, 0xf6, 0xa6, 0x6e, 0x1c, 0x63, 0xa8, 0x86, 0xeb, 0xd9, 0x70, 0xee, 0x19, 0xfa,
|
|
0x25, 0x65, 0x1b, 0x65, 0x65, 0x4b, 0x29, 0x69, 0xae, 0xa6, 0x64, 0x0f, 0x1a, 0x9c, 0x9d, 0x38,
|
|
0xd4, 0x17, 0xdd, 0xf5, 0x83, 0xaa, 0x7a, 0x40, 0x73, 0x76, 0x32, 0xf4, 0x05, 0x79, 0x17, 0x9a,
|
|
0x6a, 0xc0, 0x77, 0xa5, 0xdb, 0x85, 0x83, 0xea, 0xc5, 0x4f, 0x36, 0x15, 0x63, 0xe0, 0x4a, 0xd7,
|
|
0xfa, 0xbc, 0x02, 0xed, 0x01, 0x86, 0x28, 0xf1, 0x12, 0xe8, 0x5e, 0xd6, 0x6c, 0xed, 0x22, 0xcd,
|
|
0x6a, 0x17, 0x68, 0x56, 0x5f, 0xd5, 0xec, 0x0d, 0xd8, 0x48, 0x38, 0x8d, 0x5c, 0x9e, 0x3a, 0x01,
|
|
0xa6, 0xa2, 0xdb, 0xd0, 0xc2, 0xb5, 0x72, 0xdf, 0x23, 0x4c, 0x85, 0xf5, 0xa7, 0x01, 0xed, 0x11,
|
|
0xba, 0xdc, 0x9b, 0xbe, 0x3c, 0x1d, 0x96, 0xf1, 0x57, 0x2f, 0xc0, 0xbf, 0xb6, 0x8a, 0xff, 0x0e,
|
|
0x6c, 0x73, 0x14, 0xb3, 0x50, 0x3a, 0x4b, 0xf2, 0x64, 0x27, 0x6e, 0x2b, 0x1b, 0x78, 0x30, 0x17,
|
|
0xe9, 0x10, 0x6a, 0xc7, 0x33, 0xe4, 0xa9, 0x56, 0xe1, 0xc2, 0x33, 0x90, 0xcd, 0xb3, 0xbe, 0xaa,
|
|
0xc0, 0x46, 0xc1, 0x5c, 0x85, 0xfa, 0x6f, 0xed, 0xd2, 0xbf, 0xa7, 0x6c, 0x41, 0x5b, 0x03, 0x70,
|
|
0x62, 0xe6, 0xe3, 0xa2, 0xc0, 0xb4, 0xb4, 0xf3, 0x09, 0xf3, 0x71, 0x55, 0x96, 0xda, 0x3f, 0x92,
|
|
0xa5, 0x7e, 0xb6, 0x2c, 0x3d, 0x58, 0x9b, 0x52, 0x99, 0xa5, 0xbe, 0xd5, 0xdf, 0x3f, 0xbb, 0x46,
|
|
0x3d, 0xa4, 0x52, 0xd8, 0x7a, 0x9e, 0x35, 0x80, 0x96, 0x6a, 0xeb, 0x46, 0x69, 0xec, 0xa9, 0xd6,
|
|
0xf7, 0xdc, 0xb6, 0xf5, 0xc6, 0x6a, 0x9b, 0xb8, 0x8c, 0x50, 0x75, 0xa2, 0x8d, 0x47, 0x98, 0xf6,
|
|
0x47, 0x38, 0xd1, 0x0a, 0xe9, 0x8b, 0x9b, 0x47, 0xa8, 0xe9, 0x7b, 0x4b, 0x6e, 0x42, 0x6b, 0xe9,
|
|
0x6c, 0xe6, 0x21, 0x60, 0x71, 0x34, 0xff, 0xbe, 0x42, 0x53, 0xe1, 0x3c, 0x73, 0xc3, 0x5c, 0xc0,
|
|
0xa6, 0xdd, 0xa0, 0xe2, 0x43, 0x65, 0xaa, 0xc8, 0x8b, 0x02, 0x25, 0xba, 0xb5, 0x83, 0xaa, 0x8a,
|
|
0x3c, 0xaf, 0x50, 0xc2, 0xfa, 0x04, 0x20, 0x07, 0xa7, 0x28, 0x2e, 0x32, 0x68, 0x2c, 0x67, 0xf0,
|
|
0x3d, 0x68, 0x04, 0x98, 0xf6, 0x05, 0x4e, 0xba, 0x15, 0xad, 0xdd, 0x79, 0xb7, 0x20, 0x0f, 0x65,
|
|
0x17, 0xd3, 0xad, 0x18, 0xb6, 0x47, 0xd9, 0x66, 0xea, 0xac, 0x50, 0x21, 0xa9, 0x27, 0x56, 0xaa,
|
|
0xa6, 0xb1, 0x5a, 0x35, 0x6f, 0x42, 0x2b, 0xc2, 0x88, 0xf1, 0xd4, 0x11, 0xf4, 0x14, 0x0b, 0x35,
|
|
0x32, 0xd7, 0x88, 0x9e, 0xa2, 0xe2, 0x1b, 0xcf, 0x22, 0x87, 0xb3, 0x13, 0x51, 0x1c, 0xa8, 0x78,
|
|
0x16, 0xd9, 0xec, 0x44, 0xdc, 0xf9, 0xa2, 0x02, 0x8d, 0xfc, 0x2a, 0x92, 0x75, 0xa8, 0x05, 0x4f,
|
|
0x58, 0x8c, 0xe6, 0x35, 0xd2, 0x81, 0xed, 0x60, 0xb5, 0xdf, 0x36, 0x7d, 0xb2, 0x03, 0x5b, 0x41,
|
|
0xb9, 0x59, 0x35, 0x91, 0x10, 0xd8, 0x0c, 0x4a, 0xdd, 0x9c, 0xf9, 0x29, 0xd9, 0x83, 0x9d, 0xe0,
|
|
0xc5, 0x76, 0xc7, 0x9c, 0x90, 0x5d, 0x30, 0x83, 0x72, 0x3f, 0x20, 0xcc, 0x29, 0xe9, 0x80, 0x19,
|
|
0xac, 0x3c, 0xc0, 0xcd, 0x6f, 0x0d, 0xb2, 0x03, 0x9b, 0x41, 0xe9, 0x95, 0x6a, 0x7e, 0x67, 0x10,
|
|
0x02, 0xed, 0x60, 0xf9, 0x29, 0x67, 0x7e, 0x6f, 0x90, 0x3d, 0x20, 0xc1, 0x0b, 0xef, 0x1d, 0xf3,
|
|
0x07, 0x83, 0xec, 0xc2, 0x56, 0x50, 0x7a, 0x14, 0x08, 0xf3, 0x47, 0x83, 0x6c, 0x40, 0x23, 0xc8,
|
|
0xbe, 0x9b, 0xe6, 0x97, 0x55, 0x6d, 0x65, 0x77, 0xd9, 0xfc, 0xbd, 0x7a, 0xe7, 0x1e, 0x34, 0x8b,
|
|
0xff, 0x4b, 0x08, 0x40, 0xfd, 0xb1, 0x2b, 0x24, 0x72, 0xf3, 0x9a, 0xfa, 0x6d, 0xa3, 0xeb, 0x23,
|
|
0x37, 0x0d, 0xf5, 0xfb, 0x23, 0x4e, 0x95, 0xbf, 0xa2, 0x44, 0x7b, 0xaa, 0x2e, 0xa7, 0x59, 0xbd,
|
|
0x3f, 0xf8, 0xf8, 0xfe, 0x84, 0xca, 0xe9, 0x6c, 0xac, 0xae, 0xfb, 0xe1, 0x29, 0x0d, 0x43, 0x7a,
|
|
0x2a, 0xd1, 0x9b, 0x1e, 0x66, 0xb9, 0x7f, 0xdb, 0xa7, 0x42, 0x72, 0x3a, 0x9e, 0x49, 0xf4, 0x0f,
|
|
0x8b, 0x13, 0x70, 0xa8, 0x0f, 0xc4, 0xdc, 0x4c, 0xc6, 0xe3, 0xba, 0xf6, 0xdc, 0xfd, 0x2b, 0x00,
|
|
0x00, 0xff, 0xff, 0xe0, 0x4c, 0xc7, 0x32, 0x95, 0x12, 0x00, 0x00,
|
|
}
|