mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
1dcd06cc78
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
4415 lines
170 KiB
Go
4415 lines
170 KiB
Go
// Code generated by protoc-gen-go. DO NOT EDIT.
|
|
// source: data_coord.proto
|
|
|
|
package datapb
|
|
|
|
import (
|
|
context "context"
|
|
fmt "fmt"
|
|
proto "github.com/golang/protobuf/proto"
|
|
commonpb "github.com/milvus-io/milvus/internal/proto/commonpb"
|
|
internalpb "github.com/milvus-io/milvus/internal/proto/internalpb"
|
|
milvuspb "github.com/milvus-io/milvus/internal/proto/milvuspb"
|
|
schemapb "github.com/milvus-io/milvus/internal/proto/schemapb"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
math "math"
|
|
)
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ = proto.Marshal
|
|
var _ = fmt.Errorf
|
|
var _ = math.Inf
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the proto package it is being compiled against.
|
|
// A compilation error at this line likely means your copy of the
|
|
// proto package needs to be updated.
|
|
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
|
|
|
type ChannelWatchState int32
|
|
|
|
const (
|
|
ChannelWatchState_Uncomplete ChannelWatchState = 0
|
|
ChannelWatchState_Complete ChannelWatchState = 1
|
|
)
|
|
|
|
var ChannelWatchState_name = map[int32]string{
|
|
0: "Uncomplete",
|
|
1: "Complete",
|
|
}
|
|
|
|
var ChannelWatchState_value = map[string]int32{
|
|
"Uncomplete": 0,
|
|
"Complete": 1,
|
|
}
|
|
|
|
func (x ChannelWatchState) String() string {
|
|
return proto.EnumName(ChannelWatchState_name, int32(x))
|
|
}
|
|
|
|
func (ChannelWatchState) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{0}
|
|
}
|
|
|
|
type CompactionType int32
|
|
|
|
const (
|
|
CompactionType_UndefinedCompaction CompactionType = 0
|
|
CompactionType_InnerCompaction CompactionType = 1
|
|
CompactionType_MergeCompaction CompactionType = 2
|
|
)
|
|
|
|
var CompactionType_name = map[int32]string{
|
|
0: "UndefinedCompaction",
|
|
1: "InnerCompaction",
|
|
2: "MergeCompaction",
|
|
}
|
|
|
|
var CompactionType_value = map[string]int32{
|
|
"UndefinedCompaction": 0,
|
|
"InnerCompaction": 1,
|
|
"MergeCompaction": 2,
|
|
}
|
|
|
|
func (x CompactionType) String() string {
|
|
return proto.EnumName(CompactionType_name, int32(x))
|
|
}
|
|
|
|
func (CompactionType) EnumDescriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{1}
|
|
}
|
|
|
|
type FlushRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FlushRequest) Reset() { *m = FlushRequest{} }
|
|
func (m *FlushRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*FlushRequest) ProtoMessage() {}
|
|
func (*FlushRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{0}
|
|
}
|
|
|
|
func (m *FlushRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FlushRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *FlushRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FlushRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FlushRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FlushRequest.Merge(m, src)
|
|
}
|
|
func (m *FlushRequest) XXX_Size() int {
|
|
return xxx_messageInfo_FlushRequest.Size(m)
|
|
}
|
|
func (m *FlushRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FlushRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FlushRequest proto.InternalMessageInfo
|
|
|
|
func (m *FlushRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FlushRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type FlushResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
SegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FlushResponse) Reset() { *m = FlushResponse{} }
|
|
func (m *FlushResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*FlushResponse) ProtoMessage() {}
|
|
func (*FlushResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{1}
|
|
}
|
|
|
|
func (m *FlushResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FlushResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *FlushResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FlushResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FlushResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FlushResponse.Merge(m, src)
|
|
}
|
|
func (m *FlushResponse) XXX_Size() int {
|
|
return xxx_messageInfo_FlushResponse.Size(m)
|
|
}
|
|
func (m *FlushResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FlushResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FlushResponse proto.InternalMessageInfo
|
|
|
|
func (m *FlushResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FlushResponse) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushResponse) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushResponse) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentIDRequest struct {
|
|
Count uint32 `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
|
|
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,4,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentIDRequest) Reset() { *m = SegmentIDRequest{} }
|
|
func (m *SegmentIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentIDRequest) ProtoMessage() {}
|
|
func (*SegmentIDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{2}
|
|
}
|
|
|
|
func (m *SegmentIDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentIDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentIDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentIDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentIDRequest.Merge(m, src)
|
|
}
|
|
func (m *SegmentIDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentIDRequest.Size(m)
|
|
}
|
|
func (m *SegmentIDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentIDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentIDRequest proto.InternalMessageInfo
|
|
|
|
func (m *SegmentIDRequest) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDRequest) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegmentIDRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type AssignSegmentIDRequest struct {
|
|
NodeID int64 `protobuf:"varint,1,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
|
PeerRole string `protobuf:"bytes,2,opt,name=peer_role,json=peerRole,proto3" json:"peer_role,omitempty"`
|
|
SegmentIDRequests []*SegmentIDRequest `protobuf:"bytes,3,rep,name=segmentIDRequests,proto3" json:"segmentIDRequests,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *AssignSegmentIDRequest) Reset() { *m = AssignSegmentIDRequest{} }
|
|
func (m *AssignSegmentIDRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignSegmentIDRequest) ProtoMessage() {}
|
|
func (*AssignSegmentIDRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{3}
|
|
}
|
|
|
|
func (m *AssignSegmentIDRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AssignSegmentIDRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *AssignSegmentIDRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AssignSegmentIDRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AssignSegmentIDRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AssignSegmentIDRequest.Merge(m, src)
|
|
}
|
|
func (m *AssignSegmentIDRequest) XXX_Size() int {
|
|
return xxx_messageInfo_AssignSegmentIDRequest.Size(m)
|
|
}
|
|
func (m *AssignSegmentIDRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AssignSegmentIDRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AssignSegmentIDRequest proto.InternalMessageInfo
|
|
|
|
func (m *AssignSegmentIDRequest) GetNodeID() int64 {
|
|
if m != nil {
|
|
return m.NodeID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *AssignSegmentIDRequest) GetPeerRole() string {
|
|
if m != nil {
|
|
return m.PeerRole
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *AssignSegmentIDRequest) GetSegmentIDRequests() []*SegmentIDRequest {
|
|
if m != nil {
|
|
return m.SegmentIDRequests
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentIDAssignment struct {
|
|
SegID int64 `protobuf:"varint,1,opt,name=segID,proto3" json:"segID,omitempty"`
|
|
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
|
|
Count uint32 `protobuf:"varint,3,opt,name=count,proto3" json:"count,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,4,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,5,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
ExpireTime uint64 `protobuf:"varint,6,opt,name=expire_time,json=expireTime,proto3" json:"expire_time,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,7,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) Reset() { *m = SegmentIDAssignment{} }
|
|
func (m *SegmentIDAssignment) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentIDAssignment) ProtoMessage() {}
|
|
func (*SegmentIDAssignment) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{4}
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentIDAssignment.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentIDAssignment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentIDAssignment.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentIDAssignment) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentIDAssignment.Merge(m, src)
|
|
}
|
|
func (m *SegmentIDAssignment) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentIDAssignment.Size(m)
|
|
}
|
|
func (m *SegmentIDAssignment) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentIDAssignment.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentIDAssignment proto.InternalMessageInfo
|
|
|
|
func (m *SegmentIDAssignment) GetSegID() int64 {
|
|
if m != nil {
|
|
return m.SegID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetCount() uint32 {
|
|
if m != nil {
|
|
return m.Count
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetExpireTime() uint64 {
|
|
if m != nil {
|
|
return m.ExpireTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentIDAssignment) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type AssignSegmentIDResponse struct {
|
|
SegIDAssignments []*SegmentIDAssignment `protobuf:"bytes,1,rep,name=segIDAssignments,proto3" json:"segIDAssignments,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 *AssignSegmentIDResponse) Reset() { *m = AssignSegmentIDResponse{} }
|
|
func (m *AssignSegmentIDResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*AssignSegmentIDResponse) ProtoMessage() {}
|
|
func (*AssignSegmentIDResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{5}
|
|
}
|
|
|
|
func (m *AssignSegmentIDResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_AssignSegmentIDResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *AssignSegmentIDResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_AssignSegmentIDResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *AssignSegmentIDResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_AssignSegmentIDResponse.Merge(m, src)
|
|
}
|
|
func (m *AssignSegmentIDResponse) XXX_Size() int {
|
|
return xxx_messageInfo_AssignSegmentIDResponse.Size(m)
|
|
}
|
|
func (m *AssignSegmentIDResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_AssignSegmentIDResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_AssignSegmentIDResponse proto.InternalMessageInfo
|
|
|
|
func (m *AssignSegmentIDResponse) GetSegIDAssignments() []*SegmentIDAssignment {
|
|
if m != nil {
|
|
return m.SegIDAssignments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *AssignSegmentIDResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetSegmentStatesRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
SegmentIDs []int64 `protobuf:"varint,2,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentStatesRequest) Reset() { *m = GetSegmentStatesRequest{} }
|
|
func (m *GetSegmentStatesRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentStatesRequest) ProtoMessage() {}
|
|
func (*GetSegmentStatesRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{6}
|
|
}
|
|
|
|
func (m *GetSegmentStatesRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentStatesRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentStatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentStatesRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentStatesRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentStatesRequest.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentStatesRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentStatesRequest.Size(m)
|
|
}
|
|
func (m *GetSegmentStatesRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentStatesRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentStatesRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentStatesRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentStatesRequest) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentStateInfo struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
State commonpb.SegmentState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
|
|
StartPosition *internalpb.MsgPosition `protobuf:"bytes,3,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
|
|
EndPosition *internalpb.MsgPosition `protobuf:"bytes,4,opt,name=end_position,json=endPosition,proto3" json:"end_position,omitempty"`
|
|
Status *commonpb.Status `protobuf:"bytes,5,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentStateInfo) Reset() { *m = SegmentStateInfo{} }
|
|
func (m *SegmentStateInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentStateInfo) ProtoMessage() {}
|
|
func (*SegmentStateInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{7}
|
|
}
|
|
|
|
func (m *SegmentStateInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentStateInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentStateInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentStateInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentStateInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentStateInfo.Merge(m, src)
|
|
}
|
|
func (m *SegmentStateInfo) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentStateInfo.Size(m)
|
|
}
|
|
func (m *SegmentStateInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentStateInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentStateInfo proto.InternalMessageInfo
|
|
|
|
func (m *SegmentStateInfo) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentStateInfo) GetState() commonpb.SegmentState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return commonpb.SegmentState_SegmentStateNone
|
|
}
|
|
|
|
func (m *SegmentStateInfo) GetStartPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.StartPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentStateInfo) GetEndPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.EndPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentStateInfo) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetSegmentStatesResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
States []*SegmentStateInfo `protobuf:"bytes,2,rep,name=states,proto3" json:"states,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentStatesResponse) Reset() { *m = GetSegmentStatesResponse{} }
|
|
func (m *GetSegmentStatesResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentStatesResponse) ProtoMessage() {}
|
|
func (*GetSegmentStatesResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{8}
|
|
}
|
|
|
|
func (m *GetSegmentStatesResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentStatesResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentStatesResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentStatesResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentStatesResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentStatesResponse.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentStatesResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentStatesResponse.Size(m)
|
|
}
|
|
func (m *GetSegmentStatesResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentStatesResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentStatesResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentStatesResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentStatesResponse) GetStates() []*SegmentStateInfo {
|
|
if m != nil {
|
|
return m.States
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetSegmentInfoRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
SegmentIDs []int64 `protobuf:"varint,2,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) Reset() { *m = GetSegmentInfoRequest{} }
|
|
func (m *GetSegmentInfoRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentInfoRequest) ProtoMessage() {}
|
|
func (*GetSegmentInfoRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{9}
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentInfoRequest.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentInfoRequest.Size(m)
|
|
}
|
|
func (m *GetSegmentInfoRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentInfoRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentInfoRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentInfoRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentInfoRequest) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetSegmentInfoResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
Infos []*SegmentInfo `protobuf:"bytes,2,rep,name=infos,proto3" json:"infos,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) Reset() { *m = GetSegmentInfoResponse{} }
|
|
func (m *GetSegmentInfoResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentInfoResponse) ProtoMessage() {}
|
|
func (*GetSegmentInfoResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{10}
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentInfoResponse.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentInfoResponse.Size(m)
|
|
}
|
|
func (m *GetSegmentInfoResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentInfoResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentInfoResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetSegmentInfoResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetSegmentInfoResponse) GetInfos() []*SegmentInfo {
|
|
if m != nil {
|
|
return m.Infos
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetInsertBinlogPathsRequest 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 *GetInsertBinlogPathsRequest) Reset() { *m = GetInsertBinlogPathsRequest{} }
|
|
func (m *GetInsertBinlogPathsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetInsertBinlogPathsRequest) ProtoMessage() {}
|
|
func (*GetInsertBinlogPathsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{11}
|
|
}
|
|
|
|
func (m *GetInsertBinlogPathsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetInsertBinlogPathsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetInsertBinlogPathsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetInsertBinlogPathsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetInsertBinlogPathsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetInsertBinlogPathsRequest.Merge(m, src)
|
|
}
|
|
func (m *GetInsertBinlogPathsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetInsertBinlogPathsRequest.Size(m)
|
|
}
|
|
func (m *GetInsertBinlogPathsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetInsertBinlogPathsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetInsertBinlogPathsRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetInsertBinlogPathsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetInsertBinlogPathsRequest) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetInsertBinlogPathsResponse struct {
|
|
FieldIDs []int64 `protobuf:"varint,1,rep,packed,name=fieldIDs,proto3" json:"fieldIDs,omitempty"`
|
|
Paths []*internalpb.StringList `protobuf:"bytes,2,rep,name=paths,proto3" json:"paths,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 *GetInsertBinlogPathsResponse) Reset() { *m = GetInsertBinlogPathsResponse{} }
|
|
func (m *GetInsertBinlogPathsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetInsertBinlogPathsResponse) ProtoMessage() {}
|
|
func (*GetInsertBinlogPathsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{12}
|
|
}
|
|
|
|
func (m *GetInsertBinlogPathsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetInsertBinlogPathsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetInsertBinlogPathsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetInsertBinlogPathsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetInsertBinlogPathsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetInsertBinlogPathsResponse.Merge(m, src)
|
|
}
|
|
func (m *GetInsertBinlogPathsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetInsertBinlogPathsResponse.Size(m)
|
|
}
|
|
func (m *GetInsertBinlogPathsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetInsertBinlogPathsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetInsertBinlogPathsResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetInsertBinlogPathsResponse) GetFieldIDs() []int64 {
|
|
if m != nil {
|
|
return m.FieldIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetInsertBinlogPathsResponse) GetPaths() []*internalpb.StringList {
|
|
if m != nil {
|
|
return m.Paths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetInsertBinlogPathsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetCollectionStatisticsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsRequest) Reset() { *m = GetCollectionStatisticsRequest{} }
|
|
func (m *GetCollectionStatisticsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetCollectionStatisticsRequest) ProtoMessage() {}
|
|
func (*GetCollectionStatisticsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{13}
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetCollectionStatisticsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetCollectionStatisticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetCollectionStatisticsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetCollectionStatisticsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetCollectionStatisticsRequest.Merge(m, src)
|
|
}
|
|
func (m *GetCollectionStatisticsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetCollectionStatisticsRequest.Size(m)
|
|
}
|
|
func (m *GetCollectionStatisticsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetCollectionStatisticsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetCollectionStatisticsRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetCollectionStatisticsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetCollectionStatisticsResponse struct {
|
|
Stats []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,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 *GetCollectionStatisticsResponse) Reset() { *m = GetCollectionStatisticsResponse{} }
|
|
func (m *GetCollectionStatisticsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetCollectionStatisticsResponse) ProtoMessage() {}
|
|
func (*GetCollectionStatisticsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{14}
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetCollectionStatisticsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetCollectionStatisticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetCollectionStatisticsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetCollectionStatisticsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetCollectionStatisticsResponse.Merge(m, src)
|
|
}
|
|
func (m *GetCollectionStatisticsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetCollectionStatisticsResponse.Size(m)
|
|
}
|
|
func (m *GetCollectionStatisticsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetCollectionStatisticsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetCollectionStatisticsResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetCollectionStatisticsResponse) GetStats() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.Stats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetCollectionStatisticsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetPartitionStatisticsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,4,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsRequest) Reset() { *m = GetPartitionStatisticsRequest{} }
|
|
func (m *GetPartitionStatisticsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetPartitionStatisticsRequest) ProtoMessage() {}
|
|
func (*GetPartitionStatisticsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{15}
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetPartitionStatisticsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetPartitionStatisticsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetPartitionStatisticsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetPartitionStatisticsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetPartitionStatisticsRequest.Merge(m, src)
|
|
}
|
|
func (m *GetPartitionStatisticsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetPartitionStatisticsRequest.Size(m)
|
|
}
|
|
func (m *GetPartitionStatisticsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetPartitionStatisticsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetPartitionStatisticsRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetPartitionStatisticsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetPartitionStatisticsResponse struct {
|
|
Stats []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=stats,proto3" json:"stats,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 *GetPartitionStatisticsResponse) Reset() { *m = GetPartitionStatisticsResponse{} }
|
|
func (m *GetPartitionStatisticsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetPartitionStatisticsResponse) ProtoMessage() {}
|
|
func (*GetPartitionStatisticsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{16}
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetPartitionStatisticsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetPartitionStatisticsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetPartitionStatisticsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetPartitionStatisticsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetPartitionStatisticsResponse.Merge(m, src)
|
|
}
|
|
func (m *GetPartitionStatisticsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetPartitionStatisticsResponse.Size(m)
|
|
}
|
|
func (m *GetPartitionStatisticsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetPartitionStatisticsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetPartitionStatisticsResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetPartitionStatisticsResponse) GetStats() []*commonpb.KeyValuePair {
|
|
if m != nil {
|
|
return m.Stats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetPartitionStatisticsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetSegmentInfoChannelRequest struct {
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetSegmentInfoChannelRequest) Reset() { *m = GetSegmentInfoChannelRequest{} }
|
|
func (m *GetSegmentInfoChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetSegmentInfoChannelRequest) ProtoMessage() {}
|
|
func (*GetSegmentInfoChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{17}
|
|
}
|
|
|
|
func (m *GetSegmentInfoChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetSegmentInfoChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetSegmentInfoChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetSegmentInfoChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetSegmentInfoChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetSegmentInfoChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *GetSegmentInfoChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetSegmentInfoChannelRequest.Size(m)
|
|
}
|
|
func (m *GetSegmentInfoChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetSegmentInfoChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetSegmentInfoChannelRequest proto.InternalMessageInfo
|
|
|
|
type VchannelInfo struct {
|
|
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
ChannelName string `protobuf:"bytes,2,opt,name=channelName,proto3" json:"channelName,omitempty"`
|
|
SeekPosition *internalpb.MsgPosition `protobuf:"bytes,3,opt,name=seek_position,json=seekPosition,proto3" json:"seek_position,omitempty"`
|
|
UnflushedSegments []*SegmentInfo `protobuf:"bytes,4,rep,name=unflushedSegments,proto3" json:"unflushedSegments,omitempty"`
|
|
FlushedSegments []*SegmentInfo `protobuf:"bytes,5,rep,name=flushedSegments,proto3" json:"flushedSegments,omitempty"`
|
|
DroppedSegments []*SegmentInfo `protobuf:"bytes,6,rep,name=dropped_segments,json=droppedSegments,proto3" json:"dropped_segments,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *VchannelInfo) Reset() { *m = VchannelInfo{} }
|
|
func (m *VchannelInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*VchannelInfo) ProtoMessage() {}
|
|
func (*VchannelInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{18}
|
|
}
|
|
|
|
func (m *VchannelInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_VchannelInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *VchannelInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_VchannelInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *VchannelInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_VchannelInfo.Merge(m, src)
|
|
}
|
|
func (m *VchannelInfo) XXX_Size() int {
|
|
return xxx_messageInfo_VchannelInfo.Size(m)
|
|
}
|
|
func (m *VchannelInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_VchannelInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_VchannelInfo proto.InternalMessageInfo
|
|
|
|
func (m *VchannelInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *VchannelInfo) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *VchannelInfo) GetSeekPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.SeekPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *VchannelInfo) GetUnflushedSegments() []*SegmentInfo {
|
|
if m != nil {
|
|
return m.UnflushedSegments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *VchannelInfo) GetFlushedSegments() []*SegmentInfo {
|
|
if m != nil {
|
|
return m.FlushedSegments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *VchannelInfo) GetDroppedSegments() []*SegmentInfo {
|
|
if m != nil {
|
|
return m.DroppedSegments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type WatchDmChannelsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Vchannels []*VchannelInfo `protobuf:"bytes,2,rep,name=vchannels,proto3" json:"vchannels,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) Reset() { *m = WatchDmChannelsRequest{} }
|
|
func (m *WatchDmChannelsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*WatchDmChannelsRequest) ProtoMessage() {}
|
|
func (*WatchDmChannelsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{19}
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WatchDmChannelsRequest.Merge(m, src)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_WatchDmChannelsRequest.Size(m)
|
|
}
|
|
func (m *WatchDmChannelsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WatchDmChannelsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WatchDmChannelsRequest proto.InternalMessageInfo
|
|
|
|
func (m *WatchDmChannelsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *WatchDmChannelsRequest) GetVchannels() []*VchannelInfo {
|
|
if m != nil {
|
|
return m.Vchannels
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type FlushSegmentsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
DbID int64 `protobuf:"varint,2,opt,name=dbID,proto3" json:"dbID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
SegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
|
MarkSegmentIDs []int64 `protobuf:"varint,5,rep,packed,name=markSegmentIDs,proto3" json:"markSegmentIDs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) Reset() { *m = FlushSegmentsRequest{} }
|
|
func (m *FlushSegmentsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*FlushSegmentsRequest) ProtoMessage() {}
|
|
func (*FlushSegmentsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{20}
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FlushSegmentsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *FlushSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FlushSegmentsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FlushSegmentsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FlushSegmentsRequest.Merge(m, src)
|
|
}
|
|
func (m *FlushSegmentsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_FlushSegmentsRequest.Size(m)
|
|
}
|
|
func (m *FlushSegmentsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FlushSegmentsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FlushSegmentsRequest proto.InternalMessageInfo
|
|
|
|
func (m *FlushSegmentsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) GetDbID() int64 {
|
|
if m != nil {
|
|
return m.DbID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) GetSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.SegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *FlushSegmentsRequest) GetMarkSegmentIDs() []int64 {
|
|
if m != nil {
|
|
return m.MarkSegmentIDs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Segment *SegmentInfo `protobuf:"bytes,2,opt,name=segment,proto3" json:"segment,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentMsg) Reset() { *m = SegmentMsg{} }
|
|
func (m *SegmentMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentMsg) ProtoMessage() {}
|
|
func (*SegmentMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{21}
|
|
}
|
|
|
|
func (m *SegmentMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentMsg.Merge(m, src)
|
|
}
|
|
func (m *SegmentMsg) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentMsg.Size(m)
|
|
}
|
|
func (m *SegmentMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentMsg proto.InternalMessageInfo
|
|
|
|
func (m *SegmentMsg) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentMsg) GetSegment() *SegmentInfo {
|
|
if m != nil {
|
|
return m.Segment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CollectionInfo struct {
|
|
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
|
|
Schema *schemapb.CollectionSchema `protobuf:"bytes,2,opt,name=schema,proto3" json:"schema,omitempty"`
|
|
Partitions []int64 `protobuf:"varint,3,rep,packed,name=partitions,proto3" json:"partitions,omitempty"`
|
|
StartPositions []*commonpb.KeyDataPair `protobuf:"bytes,4,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CollectionInfo) Reset() { *m = CollectionInfo{} }
|
|
func (m *CollectionInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*CollectionInfo) ProtoMessage() {}
|
|
func (*CollectionInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{22}
|
|
}
|
|
|
|
func (m *CollectionInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CollectionInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *CollectionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CollectionInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CollectionInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CollectionInfo.Merge(m, src)
|
|
}
|
|
func (m *CollectionInfo) XXX_Size() int {
|
|
return xxx_messageInfo_CollectionInfo.Size(m)
|
|
}
|
|
func (m *CollectionInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CollectionInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CollectionInfo proto.InternalMessageInfo
|
|
|
|
func (m *CollectionInfo) GetID() int64 {
|
|
if m != nil {
|
|
return m.ID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CollectionInfo) GetSchema() *schemapb.CollectionSchema {
|
|
if m != nil {
|
|
return m.Schema
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetPartitions() []int64 {
|
|
if m != nil {
|
|
return m.Partitions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CollectionInfo) GetStartPositions() []*commonpb.KeyDataPair {
|
|
if m != nil {
|
|
return m.StartPositions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentInfo struct {
|
|
ID int64 `protobuf:"varint,1,opt,name=ID,proto3" json:"ID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
InsertChannel string `protobuf:"bytes,4,opt,name=insert_channel,json=insertChannel,proto3" json:"insert_channel,omitempty"`
|
|
NumOfRows int64 `protobuf:"varint,5,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
|
|
State commonpb.SegmentState `protobuf:"varint,6,opt,name=state,proto3,enum=milvus.proto.common.SegmentState" json:"state,omitempty"`
|
|
MaxRowNum int64 `protobuf:"varint,7,opt,name=max_row_num,json=maxRowNum,proto3" json:"max_row_num,omitempty"`
|
|
LastExpireTime uint64 `protobuf:"varint,8,opt,name=last_expire_time,json=lastExpireTime,proto3" json:"last_expire_time,omitempty"`
|
|
StartPosition *internalpb.MsgPosition `protobuf:"bytes,9,opt,name=start_position,json=startPosition,proto3" json:"start_position,omitempty"`
|
|
DmlPosition *internalpb.MsgPosition `protobuf:"bytes,10,opt,name=dml_position,json=dmlPosition,proto3" json:"dml_position,omitempty"`
|
|
// binlogs consist of insert binlogs
|
|
Binlogs []*FieldBinlog `protobuf:"bytes,11,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
|
|
Statslogs []*FieldBinlog `protobuf:"bytes,12,rep,name=statslogs,proto3" json:"statslogs,omitempty"`
|
|
// deltalogs consists of delete binlogs. FieldID is not used yet since delete is always applied on primary key
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,13,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
CreatedByCompaction bool `protobuf:"varint,14,opt,name=createdByCompaction,proto3" json:"createdByCompaction,omitempty"`
|
|
CompactionFrom []int64 `protobuf:"varint,15,rep,packed,name=compactionFrom,proto3" json:"compactionFrom,omitempty"`
|
|
DroppedAt uint64 `protobuf:"varint,16,opt,name=dropped_at,json=droppedAt,proto3" json:"dropped_at,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentInfo) Reset() { *m = SegmentInfo{} }
|
|
func (m *SegmentInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentInfo) ProtoMessage() {}
|
|
func (*SegmentInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{23}
|
|
}
|
|
|
|
func (m *SegmentInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentInfo.Merge(m, src)
|
|
}
|
|
func (m *SegmentInfo) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentInfo.Size(m)
|
|
}
|
|
func (m *SegmentInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentInfo proto.InternalMessageInfo
|
|
|
|
func (m *SegmentInfo) GetID() int64 {
|
|
if m != nil {
|
|
return m.ID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetInsertChannel() string {
|
|
if m != nil {
|
|
return m.InsertChannel
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *SegmentInfo) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetState() commonpb.SegmentState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return commonpb.SegmentState_SegmentStateNone
|
|
}
|
|
|
|
func (m *SegmentInfo) GetMaxRowNum() int64 {
|
|
if m != nil {
|
|
return m.MaxRowNum
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetLastExpireTime() uint64 {
|
|
if m != nil {
|
|
return m.LastExpireTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentInfo) GetStartPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.StartPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetDmlPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.DmlPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetBinlogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Binlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetStatslogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Statslogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetCreatedByCompaction() bool {
|
|
if m != nil {
|
|
return m.CreatedByCompaction
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *SegmentInfo) GetCompactionFrom() []int64 {
|
|
if m != nil {
|
|
return m.CompactionFrom
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentInfo) GetDroppedAt() uint64 {
|
|
if m != nil {
|
|
return m.DroppedAt
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type SegmentStartPosition struct {
|
|
StartPosition *internalpb.MsgPosition `protobuf:"bytes,1,opt,name=start_position,json=startPosition,proto3" json:"start_position,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 *SegmentStartPosition) Reset() { *m = SegmentStartPosition{} }
|
|
func (m *SegmentStartPosition) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentStartPosition) ProtoMessage() {}
|
|
func (*SegmentStartPosition) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{24}
|
|
}
|
|
|
|
func (m *SegmentStartPosition) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentStartPosition.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentStartPosition) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentStartPosition.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentStartPosition) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentStartPosition.Merge(m, src)
|
|
}
|
|
func (m *SegmentStartPosition) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentStartPosition.Size(m)
|
|
}
|
|
func (m *SegmentStartPosition) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentStartPosition.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentStartPosition proto.InternalMessageInfo
|
|
|
|
func (m *SegmentStartPosition) GetStartPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.StartPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentStartPosition) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type SaveBinlogPathsRequest 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"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
Field2BinlogPaths []*FieldBinlog `protobuf:"bytes,4,rep,name=field2BinlogPaths,proto3" json:"field2BinlogPaths,omitempty"`
|
|
CheckPoints []*CheckPoint `protobuf:"bytes,5,rep,name=checkPoints,proto3" json:"checkPoints,omitempty"`
|
|
StartPositions []*SegmentStartPosition `protobuf:"bytes,6,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"`
|
|
Flushed bool `protobuf:"varint,7,opt,name=flushed,proto3" json:"flushed,omitempty"`
|
|
Field2StatslogPaths []*FieldBinlog `protobuf:"bytes,8,rep,name=field2StatslogPaths,proto3" json:"field2StatslogPaths,omitempty"`
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,9,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
Dropped bool `protobuf:"varint,10,opt,name=dropped,proto3" json:"dropped,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) Reset() { *m = SaveBinlogPathsRequest{} }
|
|
func (m *SaveBinlogPathsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*SaveBinlogPathsRequest) ProtoMessage() {}
|
|
func (*SaveBinlogPathsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{25}
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SaveBinlogPathsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *SaveBinlogPathsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SaveBinlogPathsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SaveBinlogPathsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SaveBinlogPathsRequest.Merge(m, src)
|
|
}
|
|
func (m *SaveBinlogPathsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_SaveBinlogPathsRequest.Size(m)
|
|
}
|
|
func (m *SaveBinlogPathsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SaveBinlogPathsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SaveBinlogPathsRequest proto.InternalMessageInfo
|
|
|
|
func (m *SaveBinlogPathsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetField2BinlogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2BinlogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetCheckPoints() []*CheckPoint {
|
|
if m != nil {
|
|
return m.CheckPoints
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetStartPositions() []*SegmentStartPosition {
|
|
if m != nil {
|
|
return m.StartPositions
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetFlushed() bool {
|
|
if m != nil {
|
|
return m.Flushed
|
|
}
|
|
return false
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetField2StatslogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2StatslogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SaveBinlogPathsRequest) GetDropped() bool {
|
|
if m != nil {
|
|
return m.Dropped
|
|
}
|
|
return false
|
|
}
|
|
|
|
type CheckPoint struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
Position *internalpb.MsgPosition `protobuf:"bytes,2,opt,name=position,proto3" json:"position,omitempty"`
|
|
NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CheckPoint) Reset() { *m = CheckPoint{} }
|
|
func (m *CheckPoint) String() string { return proto.CompactTextString(m) }
|
|
func (*CheckPoint) ProtoMessage() {}
|
|
func (*CheckPoint) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{26}
|
|
}
|
|
|
|
func (m *CheckPoint) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CheckPoint.Unmarshal(m, b)
|
|
}
|
|
func (m *CheckPoint) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CheckPoint.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CheckPoint) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CheckPoint.Merge(m, src)
|
|
}
|
|
func (m *CheckPoint) XXX_Size() int {
|
|
return xxx_messageInfo_CheckPoint.Size(m)
|
|
}
|
|
func (m *CheckPoint) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CheckPoint.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CheckPoint proto.InternalMessageInfo
|
|
|
|
func (m *CheckPoint) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CheckPoint) GetPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.Position
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CheckPoint) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DeltaLogInfo struct {
|
|
RecordEntries uint64 `protobuf:"varint,1,opt,name=record_entries,json=recordEntries,proto3" json:"record_entries,omitempty"`
|
|
TimestampFrom uint64 `protobuf:"varint,2,opt,name=timestamp_from,json=timestampFrom,proto3" json:"timestamp_from,omitempty"`
|
|
TimestampTo uint64 `protobuf:"varint,3,opt,name=timestamp_to,json=timestampTo,proto3" json:"timestamp_to,omitempty"`
|
|
DeltaLogPath string `protobuf:"bytes,4,opt,name=delta_log_path,json=deltaLogPath,proto3" json:"delta_log_path,omitempty"`
|
|
DeltaLogSize int64 `protobuf:"varint,5,opt,name=delta_log_size,json=deltaLogSize,proto3" json:"delta_log_size,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DeltaLogInfo) Reset() { *m = DeltaLogInfo{} }
|
|
func (m *DeltaLogInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*DeltaLogInfo) ProtoMessage() {}
|
|
func (*DeltaLogInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{27}
|
|
}
|
|
|
|
func (m *DeltaLogInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DeltaLogInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *DeltaLogInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DeltaLogInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DeltaLogInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DeltaLogInfo.Merge(m, src)
|
|
}
|
|
func (m *DeltaLogInfo) XXX_Size() int {
|
|
return xxx_messageInfo_DeltaLogInfo.Size(m)
|
|
}
|
|
func (m *DeltaLogInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DeltaLogInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DeltaLogInfo proto.InternalMessageInfo
|
|
|
|
func (m *DeltaLogInfo) GetRecordEntries() uint64 {
|
|
if m != nil {
|
|
return m.RecordEntries
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeltaLogInfo) GetTimestampFrom() uint64 {
|
|
if m != nil {
|
|
return m.TimestampFrom
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeltaLogInfo) GetTimestampTo() uint64 {
|
|
if m != nil {
|
|
return m.TimestampTo
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DeltaLogInfo) GetDeltaLogPath() string {
|
|
if m != nil {
|
|
return m.DeltaLogPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DeltaLogInfo) GetDeltaLogSize() int64 {
|
|
if m != nil {
|
|
return m.DeltaLogSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DataNodeTtMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
|
|
Timestamp uint64 `protobuf:"varint,3,opt,name=timestamp,proto3" json:"timestamp,omitempty"`
|
|
SegmentsStats []*SegmentStats `protobuf:"bytes,4,rep,name=segments_stats,json=segmentsStats,proto3" json:"segments_stats,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DataNodeTtMsg) Reset() { *m = DataNodeTtMsg{} }
|
|
func (m *DataNodeTtMsg) String() string { return proto.CompactTextString(m) }
|
|
func (*DataNodeTtMsg) ProtoMessage() {}
|
|
func (*DataNodeTtMsg) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{28}
|
|
}
|
|
|
|
func (m *DataNodeTtMsg) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DataNodeTtMsg.Unmarshal(m, b)
|
|
}
|
|
func (m *DataNodeTtMsg) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DataNodeTtMsg.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DataNodeTtMsg) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DataNodeTtMsg.Merge(m, src)
|
|
}
|
|
func (m *DataNodeTtMsg) XXX_Size() int {
|
|
return xxx_messageInfo_DataNodeTtMsg.Size(m)
|
|
}
|
|
func (m *DataNodeTtMsg) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DataNodeTtMsg.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DataNodeTtMsg proto.InternalMessageInfo
|
|
|
|
func (m *DataNodeTtMsg) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DataNodeTtMsg) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DataNodeTtMsg) GetTimestamp() uint64 {
|
|
if m != nil {
|
|
return m.Timestamp
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DataNodeTtMsg) GetSegmentsStats() []*SegmentStats {
|
|
if m != nil {
|
|
return m.SegmentsStats
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentStats struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=SegmentID,proto3" json:"SegmentID,omitempty"`
|
|
NumRows int64 `protobuf:"varint,2,opt,name=NumRows,proto3" json:"NumRows,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_82cd95f524594f49, []int{29}
|
|
}
|
|
|
|
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) GetNumRows() int64 {
|
|
if m != nil {
|
|
return m.NumRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type ChannelStatus struct {
|
|
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
|
|
State ChannelWatchState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.proto.data.ChannelWatchState" json:"state,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,3,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ChannelStatus) Reset() { *m = ChannelStatus{} }
|
|
func (m *ChannelStatus) String() string { return proto.CompactTextString(m) }
|
|
func (*ChannelStatus) ProtoMessage() {}
|
|
func (*ChannelStatus) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{30}
|
|
}
|
|
|
|
func (m *ChannelStatus) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ChannelStatus.Unmarshal(m, b)
|
|
}
|
|
func (m *ChannelStatus) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ChannelStatus.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ChannelStatus) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ChannelStatus.Merge(m, src)
|
|
}
|
|
func (m *ChannelStatus) XXX_Size() int {
|
|
return xxx_messageInfo_ChannelStatus.Size(m)
|
|
}
|
|
func (m *ChannelStatus) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ChannelStatus.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ChannelStatus proto.InternalMessageInfo
|
|
|
|
func (m *ChannelStatus) GetName() string {
|
|
if m != nil {
|
|
return m.Name
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *ChannelStatus) GetState() ChannelWatchState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ChannelWatchState_Uncomplete
|
|
}
|
|
|
|
func (m *ChannelStatus) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DataNodeInfo struct {
|
|
Address string `protobuf:"bytes,1,opt,name=address,proto3" json:"address,omitempty"`
|
|
Version int64 `protobuf:"varint,2,opt,name=version,proto3" json:"version,omitempty"`
|
|
Channels []*ChannelStatus `protobuf:"bytes,3,rep,name=channels,proto3" json:"channels,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DataNodeInfo) Reset() { *m = DataNodeInfo{} }
|
|
func (m *DataNodeInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*DataNodeInfo) ProtoMessage() {}
|
|
func (*DataNodeInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{31}
|
|
}
|
|
|
|
func (m *DataNodeInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DataNodeInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *DataNodeInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DataNodeInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DataNodeInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DataNodeInfo.Merge(m, src)
|
|
}
|
|
func (m *DataNodeInfo) XXX_Size() int {
|
|
return xxx_messageInfo_DataNodeInfo.Size(m)
|
|
}
|
|
func (m *DataNodeInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DataNodeInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DataNodeInfo proto.InternalMessageInfo
|
|
|
|
func (m *DataNodeInfo) GetAddress() string {
|
|
if m != nil {
|
|
return m.Address
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DataNodeInfo) GetVersion() int64 {
|
|
if m != nil {
|
|
return m.Version
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DataNodeInfo) GetChannels() []*ChannelStatus {
|
|
if m != nil {
|
|
return m.Channels
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentBinlogs struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
FieldBinlogs []*FieldBinlog `protobuf:"bytes,2,rep,name=fieldBinlogs,proto3" json:"fieldBinlogs,omitempty"`
|
|
NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
|
|
Statslogs []*FieldBinlog `protobuf:"bytes,4,rep,name=statslogs,proto3" json:"statslogs,omitempty"`
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,5,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentBinlogs) Reset() { *m = SegmentBinlogs{} }
|
|
func (m *SegmentBinlogs) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentBinlogs) ProtoMessage() {}
|
|
func (*SegmentBinlogs) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{32}
|
|
}
|
|
|
|
func (m *SegmentBinlogs) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentBinlogs.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentBinlogs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentBinlogs.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentBinlogs) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentBinlogs.Merge(m, src)
|
|
}
|
|
func (m *SegmentBinlogs) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentBinlogs.Size(m)
|
|
}
|
|
func (m *SegmentBinlogs) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentBinlogs.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentBinlogs proto.InternalMessageInfo
|
|
|
|
func (m *SegmentBinlogs) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentBinlogs) GetFieldBinlogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.FieldBinlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentBinlogs) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentBinlogs) GetStatslogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Statslogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *SegmentBinlogs) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type FieldBinlog struct {
|
|
FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
|
Binlogs []*Binlog `protobuf:"bytes,2,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *FieldBinlog) Reset() { *m = FieldBinlog{} }
|
|
func (m *FieldBinlog) String() string { return proto.CompactTextString(m) }
|
|
func (*FieldBinlog) ProtoMessage() {}
|
|
func (*FieldBinlog) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{33}
|
|
}
|
|
|
|
func (m *FieldBinlog) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_FieldBinlog.Unmarshal(m, b)
|
|
}
|
|
func (m *FieldBinlog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_FieldBinlog.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *FieldBinlog) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_FieldBinlog.Merge(m, src)
|
|
}
|
|
func (m *FieldBinlog) XXX_Size() int {
|
|
return xxx_messageInfo_FieldBinlog.Size(m)
|
|
}
|
|
func (m *FieldBinlog) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_FieldBinlog.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_FieldBinlog proto.InternalMessageInfo
|
|
|
|
func (m *FieldBinlog) GetFieldID() int64 {
|
|
if m != nil {
|
|
return m.FieldID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *FieldBinlog) GetBinlogs() []*Binlog {
|
|
if m != nil {
|
|
return m.Binlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type Binlog struct {
|
|
EntriesNum int64 `protobuf:"varint,1,opt,name=entries_num,json=entriesNum,proto3" json:"entries_num,omitempty"`
|
|
TimestampFrom uint64 `protobuf:"varint,2,opt,name=timestamp_from,json=timestampFrom,proto3" json:"timestamp_from,omitempty"`
|
|
TimestampTo uint64 `protobuf:"varint,3,opt,name=timestamp_to,json=timestampTo,proto3" json:"timestamp_to,omitempty"`
|
|
LogPath string `protobuf:"bytes,4,opt,name=log_path,json=logPath,proto3" json:"log_path,omitempty"`
|
|
LogSize int64 `protobuf:"varint,5,opt,name=log_size,json=logSize,proto3" json:"log_size,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *Binlog) Reset() { *m = Binlog{} }
|
|
func (m *Binlog) String() string { return proto.CompactTextString(m) }
|
|
func (*Binlog) ProtoMessage() {}
|
|
func (*Binlog) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{34}
|
|
}
|
|
|
|
func (m *Binlog) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_Binlog.Unmarshal(m, b)
|
|
}
|
|
func (m *Binlog) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_Binlog.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *Binlog) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_Binlog.Merge(m, src)
|
|
}
|
|
func (m *Binlog) XXX_Size() int {
|
|
return xxx_messageInfo_Binlog.Size(m)
|
|
}
|
|
func (m *Binlog) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_Binlog.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_Binlog proto.InternalMessageInfo
|
|
|
|
func (m *Binlog) GetEntriesNum() int64 {
|
|
if m != nil {
|
|
return m.EntriesNum
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Binlog) GetTimestampFrom() uint64 {
|
|
if m != nil {
|
|
return m.TimestampFrom
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Binlog) GetTimestampTo() uint64 {
|
|
if m != nil {
|
|
return m.TimestampTo
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *Binlog) GetLogPath() string {
|
|
if m != nil {
|
|
return m.LogPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *Binlog) GetLogSize() int64 {
|
|
if m != nil {
|
|
return m.LogSize
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetRecoveryInfoResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
Channels []*VchannelInfo `protobuf:"bytes,2,rep,name=channels,proto3" json:"channels,omitempty"`
|
|
Binlogs []*SegmentBinlogs `protobuf:"bytes,3,rep,name=binlogs,proto3" json:"binlogs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetRecoveryInfoResponse) Reset() { *m = GetRecoveryInfoResponse{} }
|
|
func (m *GetRecoveryInfoResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRecoveryInfoResponse) ProtoMessage() {}
|
|
func (*GetRecoveryInfoResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{35}
|
|
}
|
|
|
|
func (m *GetRecoveryInfoResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetRecoveryInfoResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetRecoveryInfoResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetRecoveryInfoResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetRecoveryInfoResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetRecoveryInfoResponse.Merge(m, src)
|
|
}
|
|
func (m *GetRecoveryInfoResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetRecoveryInfoResponse.Size(m)
|
|
}
|
|
func (m *GetRecoveryInfoResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetRecoveryInfoResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetRecoveryInfoResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetRecoveryInfoResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetRecoveryInfoResponse) GetChannels() []*VchannelInfo {
|
|
if m != nil {
|
|
return m.Channels
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetRecoveryInfoResponse) GetBinlogs() []*SegmentBinlogs {
|
|
if m != nil {
|
|
return m.Binlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type GetRecoveryInfoRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetRecoveryInfoRequest) Reset() { *m = GetRecoveryInfoRequest{} }
|
|
func (m *GetRecoveryInfoRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetRecoveryInfoRequest) ProtoMessage() {}
|
|
func (*GetRecoveryInfoRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{36}
|
|
}
|
|
|
|
func (m *GetRecoveryInfoRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetRecoveryInfoRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetRecoveryInfoRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetRecoveryInfoRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetRecoveryInfoRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetRecoveryInfoRequest.Merge(m, src)
|
|
}
|
|
func (m *GetRecoveryInfoRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetRecoveryInfoRequest.Size(m)
|
|
}
|
|
func (m *GetRecoveryInfoRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetRecoveryInfoRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetRecoveryInfoRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetRecoveryInfoRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetRecoveryInfoRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetRecoveryInfoRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetFlushedSegmentsRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
PartitionID int64 `protobuf:"varint,3,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsRequest) Reset() { *m = GetFlushedSegmentsRequest{} }
|
|
func (m *GetFlushedSegmentsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*GetFlushedSegmentsRequest) ProtoMessage() {}
|
|
func (*GetFlushedSegmentsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{37}
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetFlushedSegmentsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *GetFlushedSegmentsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetFlushedSegmentsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetFlushedSegmentsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetFlushedSegmentsRequest.Merge(m, src)
|
|
}
|
|
func (m *GetFlushedSegmentsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_GetFlushedSegmentsRequest.Size(m)
|
|
}
|
|
func (m *GetFlushedSegmentsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetFlushedSegmentsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetFlushedSegmentsRequest proto.InternalMessageInfo
|
|
|
|
func (m *GetFlushedSegmentsRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsRequest) GetPartitionID() int64 {
|
|
if m != nil {
|
|
return m.PartitionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type GetFlushedSegmentsResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
Segments []int64 `protobuf:"varint,2,rep,packed,name=segments,proto3" json:"segments,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsResponse) Reset() { *m = GetFlushedSegmentsResponse{} }
|
|
func (m *GetFlushedSegmentsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*GetFlushedSegmentsResponse) ProtoMessage() {}
|
|
func (*GetFlushedSegmentsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{38}
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_GetFlushedSegmentsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *GetFlushedSegmentsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_GetFlushedSegmentsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *GetFlushedSegmentsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_GetFlushedSegmentsResponse.Merge(m, src)
|
|
}
|
|
func (m *GetFlushedSegmentsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_GetFlushedSegmentsResponse.Size(m)
|
|
}
|
|
func (m *GetFlushedSegmentsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_GetFlushedSegmentsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_GetFlushedSegmentsResponse proto.InternalMessageInfo
|
|
|
|
func (m *GetFlushedSegmentsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *GetFlushedSegmentsResponse) GetSegments() []int64 {
|
|
if m != nil {
|
|
return m.Segments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type SegmentFlushCompletedMsg struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
Segment *SegmentInfo `protobuf:"bytes,2,opt,name=segment,proto3" json:"segment,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_82cd95f524594f49, []int{39}
|
|
}
|
|
|
|
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) GetSegment() *SegmentInfo {
|
|
if m != nil {
|
|
return m.Segment
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type ChannelWatchInfo struct {
|
|
Vchan *VchannelInfo `protobuf:"bytes,1,opt,name=vchan,proto3" json:"vchan,omitempty"`
|
|
StartTs int64 `protobuf:"varint,2,opt,name=startTs,proto3" json:"startTs,omitempty"`
|
|
State ChannelWatchState `protobuf:"varint,3,opt,name=state,proto3,enum=milvus.proto.data.ChannelWatchState" json:"state,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *ChannelWatchInfo) Reset() { *m = ChannelWatchInfo{} }
|
|
func (m *ChannelWatchInfo) String() string { return proto.CompactTextString(m) }
|
|
func (*ChannelWatchInfo) ProtoMessage() {}
|
|
func (*ChannelWatchInfo) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{40}
|
|
}
|
|
|
|
func (m *ChannelWatchInfo) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_ChannelWatchInfo.Unmarshal(m, b)
|
|
}
|
|
func (m *ChannelWatchInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_ChannelWatchInfo.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *ChannelWatchInfo) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_ChannelWatchInfo.Merge(m, src)
|
|
}
|
|
func (m *ChannelWatchInfo) XXX_Size() int {
|
|
return xxx_messageInfo_ChannelWatchInfo.Size(m)
|
|
}
|
|
func (m *ChannelWatchInfo) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_ChannelWatchInfo.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_ChannelWatchInfo proto.InternalMessageInfo
|
|
|
|
func (m *ChannelWatchInfo) GetVchan() *VchannelInfo {
|
|
if m != nil {
|
|
return m.Vchan
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *ChannelWatchInfo) GetStartTs() int64 {
|
|
if m != nil {
|
|
return m.StartTs
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *ChannelWatchInfo) GetState() ChannelWatchState {
|
|
if m != nil {
|
|
return m.State
|
|
}
|
|
return ChannelWatchState_Uncomplete
|
|
}
|
|
|
|
type CompactionSegmentBinlogs struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
FieldBinlogs []*FieldBinlog `protobuf:"bytes,2,rep,name=fieldBinlogs,proto3" json:"fieldBinlogs,omitempty"`
|
|
Field2StatslogPaths []*FieldBinlog `protobuf:"bytes,3,rep,name=field2StatslogPaths,proto3" json:"field2StatslogPaths,omitempty"`
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,4,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CompactionSegmentBinlogs) Reset() { *m = CompactionSegmentBinlogs{} }
|
|
func (m *CompactionSegmentBinlogs) String() string { return proto.CompactTextString(m) }
|
|
func (*CompactionSegmentBinlogs) ProtoMessage() {}
|
|
func (*CompactionSegmentBinlogs) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{41}
|
|
}
|
|
|
|
func (m *CompactionSegmentBinlogs) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CompactionSegmentBinlogs.Unmarshal(m, b)
|
|
}
|
|
func (m *CompactionSegmentBinlogs) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CompactionSegmentBinlogs.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CompactionSegmentBinlogs) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CompactionSegmentBinlogs.Merge(m, src)
|
|
}
|
|
func (m *CompactionSegmentBinlogs) XXX_Size() int {
|
|
return xxx_messageInfo_CompactionSegmentBinlogs.Size(m)
|
|
}
|
|
func (m *CompactionSegmentBinlogs) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CompactionSegmentBinlogs.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CompactionSegmentBinlogs proto.InternalMessageInfo
|
|
|
|
func (m *CompactionSegmentBinlogs) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionSegmentBinlogs) GetFieldBinlogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.FieldBinlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CompactionSegmentBinlogs) GetField2StatslogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2StatslogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CompactionSegmentBinlogs) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type CompactionPlan struct {
|
|
PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"`
|
|
SegmentBinlogs []*CompactionSegmentBinlogs `protobuf:"bytes,2,rep,name=segmentBinlogs,proto3" json:"segmentBinlogs,omitempty"`
|
|
StartTime uint64 `protobuf:"varint,3,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
|
|
TimeoutInSeconds int32 `protobuf:"varint,4,opt,name=timeout_in_seconds,json=timeoutInSeconds,proto3" json:"timeout_in_seconds,omitempty"`
|
|
Type CompactionType `protobuf:"varint,5,opt,name=type,proto3,enum=milvus.proto.data.CompactionType" json:"type,omitempty"`
|
|
Timetravel uint64 `protobuf:"varint,6,opt,name=timetravel,proto3" json:"timetravel,omitempty"`
|
|
Channel string `protobuf:"bytes,7,opt,name=channel,proto3" json:"channel,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CompactionPlan) Reset() { *m = CompactionPlan{} }
|
|
func (m *CompactionPlan) String() string { return proto.CompactTextString(m) }
|
|
func (*CompactionPlan) ProtoMessage() {}
|
|
func (*CompactionPlan) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{42}
|
|
}
|
|
|
|
func (m *CompactionPlan) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CompactionPlan.Unmarshal(m, b)
|
|
}
|
|
func (m *CompactionPlan) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CompactionPlan.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CompactionPlan) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CompactionPlan.Merge(m, src)
|
|
}
|
|
func (m *CompactionPlan) XXX_Size() int {
|
|
return xxx_messageInfo_CompactionPlan.Size(m)
|
|
}
|
|
func (m *CompactionPlan) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CompactionPlan.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CompactionPlan proto.InternalMessageInfo
|
|
|
|
func (m *CompactionPlan) GetPlanID() int64 {
|
|
if m != nil {
|
|
return m.PlanID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionPlan) GetSegmentBinlogs() []*CompactionSegmentBinlogs {
|
|
if m != nil {
|
|
return m.SegmentBinlogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CompactionPlan) GetStartTime() uint64 {
|
|
if m != nil {
|
|
return m.StartTime
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionPlan) GetTimeoutInSeconds() int32 {
|
|
if m != nil {
|
|
return m.TimeoutInSeconds
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionPlan) GetType() CompactionType {
|
|
if m != nil {
|
|
return m.Type
|
|
}
|
|
return CompactionType_UndefinedCompaction
|
|
}
|
|
|
|
func (m *CompactionPlan) GetTimetravel() uint64 {
|
|
if m != nil {
|
|
return m.Timetravel
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionPlan) GetChannel() string {
|
|
if m != nil {
|
|
return m.Channel
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type CompactionResult struct {
|
|
PlanID int64 `protobuf:"varint,1,opt,name=planID,proto3" json:"planID,omitempty"`
|
|
SegmentID int64 `protobuf:"varint,2,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
NumOfRows int64 `protobuf:"varint,3,opt,name=num_of_rows,json=numOfRows,proto3" json:"num_of_rows,omitempty"`
|
|
InsertLogs []*FieldBinlog `protobuf:"bytes,4,rep,name=insert_logs,json=insertLogs,proto3" json:"insert_logs,omitempty"`
|
|
Field2StatslogPaths []*FieldBinlog `protobuf:"bytes,5,rep,name=field2StatslogPaths,proto3" json:"field2StatslogPaths,omitempty"`
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,6,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *CompactionResult) Reset() { *m = CompactionResult{} }
|
|
func (m *CompactionResult) String() string { return proto.CompactTextString(m) }
|
|
func (*CompactionResult) ProtoMessage() {}
|
|
func (*CompactionResult) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{43}
|
|
}
|
|
|
|
func (m *CompactionResult) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_CompactionResult.Unmarshal(m, b)
|
|
}
|
|
func (m *CompactionResult) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_CompactionResult.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *CompactionResult) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_CompactionResult.Merge(m, src)
|
|
}
|
|
func (m *CompactionResult) XXX_Size() int {
|
|
return xxx_messageInfo_CompactionResult.Size(m)
|
|
}
|
|
func (m *CompactionResult) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_CompactionResult.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_CompactionResult proto.InternalMessageInfo
|
|
|
|
func (m *CompactionResult) GetPlanID() int64 {
|
|
if m != nil {
|
|
return m.PlanID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionResult) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionResult) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *CompactionResult) GetInsertLogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.InsertLogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CompactionResult) GetField2StatslogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2StatslogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *CompactionResult) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// Deprecated
|
|
type SegmentFieldBinlogMeta struct {
|
|
FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
|
BinlogPath string `protobuf:"bytes,2,opt,name=binlog_path,json=binlogPath,proto3" json:"binlog_path,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *SegmentFieldBinlogMeta) Reset() { *m = SegmentFieldBinlogMeta{} }
|
|
func (m *SegmentFieldBinlogMeta) String() string { return proto.CompactTextString(m) }
|
|
func (*SegmentFieldBinlogMeta) ProtoMessage() {}
|
|
func (*SegmentFieldBinlogMeta) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{44}
|
|
}
|
|
|
|
func (m *SegmentFieldBinlogMeta) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_SegmentFieldBinlogMeta.Unmarshal(m, b)
|
|
}
|
|
func (m *SegmentFieldBinlogMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_SegmentFieldBinlogMeta.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *SegmentFieldBinlogMeta) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_SegmentFieldBinlogMeta.Merge(m, src)
|
|
}
|
|
func (m *SegmentFieldBinlogMeta) XXX_Size() int {
|
|
return xxx_messageInfo_SegmentFieldBinlogMeta.Size(m)
|
|
}
|
|
func (m *SegmentFieldBinlogMeta) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_SegmentFieldBinlogMeta.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_SegmentFieldBinlogMeta proto.InternalMessageInfo
|
|
|
|
func (m *SegmentFieldBinlogMeta) GetFieldID() int64 {
|
|
if m != nil {
|
|
return m.FieldID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *SegmentFieldBinlogMeta) GetBinlogPath() string {
|
|
if m != nil {
|
|
return m.BinlogPath
|
|
}
|
|
return ""
|
|
}
|
|
|
|
type WatchChannelsRequest struct {
|
|
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
ChannelNames []string `protobuf:"bytes,2,rep,name=channelNames,proto3" json:"channelNames,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WatchChannelsRequest) Reset() { *m = WatchChannelsRequest{} }
|
|
func (m *WatchChannelsRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*WatchChannelsRequest) ProtoMessage() {}
|
|
func (*WatchChannelsRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{45}
|
|
}
|
|
|
|
func (m *WatchChannelsRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WatchChannelsRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *WatchChannelsRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WatchChannelsRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WatchChannelsRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WatchChannelsRequest.Merge(m, src)
|
|
}
|
|
func (m *WatchChannelsRequest) XXX_Size() int {
|
|
return xxx_messageInfo_WatchChannelsRequest.Size(m)
|
|
}
|
|
func (m *WatchChannelsRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WatchChannelsRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WatchChannelsRequest proto.InternalMessageInfo
|
|
|
|
func (m *WatchChannelsRequest) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *WatchChannelsRequest) GetChannelNames() []string {
|
|
if m != nil {
|
|
return m.ChannelNames
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type WatchChannelsResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *WatchChannelsResponse) Reset() { *m = WatchChannelsResponse{} }
|
|
func (m *WatchChannelsResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*WatchChannelsResponse) ProtoMessage() {}
|
|
func (*WatchChannelsResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{46}
|
|
}
|
|
|
|
func (m *WatchChannelsResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_WatchChannelsResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *WatchChannelsResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_WatchChannelsResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *WatchChannelsResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_WatchChannelsResponse.Merge(m, src)
|
|
}
|
|
func (m *WatchChannelsResponse) XXX_Size() int {
|
|
return xxx_messageInfo_WatchChannelsResponse.Size(m)
|
|
}
|
|
func (m *WatchChannelsResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_WatchChannelsResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_WatchChannelsResponse proto.InternalMessageInfo
|
|
|
|
func (m *WatchChannelsResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DropVirtualChannelRequest struct {
|
|
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
|
ChannelName string `protobuf:"bytes,2,opt,name=channel_name,json=channelName,proto3" json:"channel_name,omitempty"`
|
|
Segments []*DropVirtualChannelSegment `protobuf:"bytes,3,rep,name=segments,proto3" json:"segments,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DropVirtualChannelRequest) Reset() { *m = DropVirtualChannelRequest{} }
|
|
func (m *DropVirtualChannelRequest) String() string { return proto.CompactTextString(m) }
|
|
func (*DropVirtualChannelRequest) ProtoMessage() {}
|
|
func (*DropVirtualChannelRequest) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{47}
|
|
}
|
|
|
|
func (m *DropVirtualChannelRequest) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DropVirtualChannelRequest.Unmarshal(m, b)
|
|
}
|
|
func (m *DropVirtualChannelRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DropVirtualChannelRequest.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DropVirtualChannelRequest) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DropVirtualChannelRequest.Merge(m, src)
|
|
}
|
|
func (m *DropVirtualChannelRequest) XXX_Size() int {
|
|
return xxx_messageInfo_DropVirtualChannelRequest.Size(m)
|
|
}
|
|
func (m *DropVirtualChannelRequest) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DropVirtualChannelRequest.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DropVirtualChannelRequest proto.InternalMessageInfo
|
|
|
|
func (m *DropVirtualChannelRequest) GetBase() *commonpb.MsgBase {
|
|
if m != nil {
|
|
return m.Base
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelRequest) GetChannelName() string {
|
|
if m != nil {
|
|
return m.ChannelName
|
|
}
|
|
return ""
|
|
}
|
|
|
|
func (m *DropVirtualChannelRequest) GetSegments() []*DropVirtualChannelSegment {
|
|
if m != nil {
|
|
return m.Segments
|
|
}
|
|
return nil
|
|
}
|
|
|
|
type DropVirtualChannelSegment struct {
|
|
SegmentID int64 `protobuf:"varint,1,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
|
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
|
Field2BinlogPaths []*FieldBinlog `protobuf:"bytes,3,rep,name=field2BinlogPaths,proto3" json:"field2BinlogPaths,omitempty"`
|
|
Field2StatslogPaths []*FieldBinlog `protobuf:"bytes,4,rep,name=field2StatslogPaths,proto3" json:"field2StatslogPaths,omitempty"`
|
|
Deltalogs []*FieldBinlog `protobuf:"bytes,5,rep,name=deltalogs,proto3" json:"deltalogs,omitempty"`
|
|
StartPosition *internalpb.MsgPosition `protobuf:"bytes,6,opt,name=startPosition,proto3" json:"startPosition,omitempty"`
|
|
CheckPoint *internalpb.MsgPosition `protobuf:"bytes,7,opt,name=checkPoint,proto3" json:"checkPoint,omitempty"`
|
|
NumOfRows int64 `protobuf:"varint,8,opt,name=numOfRows,proto3" json:"numOfRows,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) Reset() { *m = DropVirtualChannelSegment{} }
|
|
func (m *DropVirtualChannelSegment) String() string { return proto.CompactTextString(m) }
|
|
func (*DropVirtualChannelSegment) ProtoMessage() {}
|
|
func (*DropVirtualChannelSegment) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{48}
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DropVirtualChannelSegment.Unmarshal(m, b)
|
|
}
|
|
func (m *DropVirtualChannelSegment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DropVirtualChannelSegment.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DropVirtualChannelSegment) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DropVirtualChannelSegment.Merge(m, src)
|
|
}
|
|
func (m *DropVirtualChannelSegment) XXX_Size() int {
|
|
return xxx_messageInfo_DropVirtualChannelSegment.Size(m)
|
|
}
|
|
func (m *DropVirtualChannelSegment) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DropVirtualChannelSegment.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DropVirtualChannelSegment proto.InternalMessageInfo
|
|
|
|
func (m *DropVirtualChannelSegment) GetSegmentID() int64 {
|
|
if m != nil {
|
|
return m.SegmentID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetCollectionID() int64 {
|
|
if m != nil {
|
|
return m.CollectionID
|
|
}
|
|
return 0
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetField2BinlogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2BinlogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetField2StatslogPaths() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Field2StatslogPaths
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetDeltalogs() []*FieldBinlog {
|
|
if m != nil {
|
|
return m.Deltalogs
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetStartPosition() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.StartPosition
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetCheckPoint() *internalpb.MsgPosition {
|
|
if m != nil {
|
|
return m.CheckPoint
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (m *DropVirtualChannelSegment) GetNumOfRows() int64 {
|
|
if m != nil {
|
|
return m.NumOfRows
|
|
}
|
|
return 0
|
|
}
|
|
|
|
type DropVirtualChannelResponse struct {
|
|
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
|
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
|
XXX_unrecognized []byte `json:"-"`
|
|
XXX_sizecache int32 `json:"-"`
|
|
}
|
|
|
|
func (m *DropVirtualChannelResponse) Reset() { *m = DropVirtualChannelResponse{} }
|
|
func (m *DropVirtualChannelResponse) String() string { return proto.CompactTextString(m) }
|
|
func (*DropVirtualChannelResponse) ProtoMessage() {}
|
|
func (*DropVirtualChannelResponse) Descriptor() ([]byte, []int) {
|
|
return fileDescriptor_82cd95f524594f49, []int{49}
|
|
}
|
|
|
|
func (m *DropVirtualChannelResponse) XXX_Unmarshal(b []byte) error {
|
|
return xxx_messageInfo_DropVirtualChannelResponse.Unmarshal(m, b)
|
|
}
|
|
func (m *DropVirtualChannelResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
|
return xxx_messageInfo_DropVirtualChannelResponse.Marshal(b, m, deterministic)
|
|
}
|
|
func (m *DropVirtualChannelResponse) XXX_Merge(src proto.Message) {
|
|
xxx_messageInfo_DropVirtualChannelResponse.Merge(m, src)
|
|
}
|
|
func (m *DropVirtualChannelResponse) XXX_Size() int {
|
|
return xxx_messageInfo_DropVirtualChannelResponse.Size(m)
|
|
}
|
|
func (m *DropVirtualChannelResponse) XXX_DiscardUnknown() {
|
|
xxx_messageInfo_DropVirtualChannelResponse.DiscardUnknown(m)
|
|
}
|
|
|
|
var xxx_messageInfo_DropVirtualChannelResponse proto.InternalMessageInfo
|
|
|
|
func (m *DropVirtualChannelResponse) GetStatus() *commonpb.Status {
|
|
if m != nil {
|
|
return m.Status
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func init() {
|
|
proto.RegisterEnum("milvus.proto.data.ChannelWatchState", ChannelWatchState_name, ChannelWatchState_value)
|
|
proto.RegisterEnum("milvus.proto.data.CompactionType", CompactionType_name, CompactionType_value)
|
|
proto.RegisterType((*FlushRequest)(nil), "milvus.proto.data.FlushRequest")
|
|
proto.RegisterType((*FlushResponse)(nil), "milvus.proto.data.FlushResponse")
|
|
proto.RegisterType((*SegmentIDRequest)(nil), "milvus.proto.data.SegmentIDRequest")
|
|
proto.RegisterType((*AssignSegmentIDRequest)(nil), "milvus.proto.data.AssignSegmentIDRequest")
|
|
proto.RegisterType((*SegmentIDAssignment)(nil), "milvus.proto.data.SegmentIDAssignment")
|
|
proto.RegisterType((*AssignSegmentIDResponse)(nil), "milvus.proto.data.AssignSegmentIDResponse")
|
|
proto.RegisterType((*GetSegmentStatesRequest)(nil), "milvus.proto.data.GetSegmentStatesRequest")
|
|
proto.RegisterType((*SegmentStateInfo)(nil), "milvus.proto.data.SegmentStateInfo")
|
|
proto.RegisterType((*GetSegmentStatesResponse)(nil), "milvus.proto.data.GetSegmentStatesResponse")
|
|
proto.RegisterType((*GetSegmentInfoRequest)(nil), "milvus.proto.data.GetSegmentInfoRequest")
|
|
proto.RegisterType((*GetSegmentInfoResponse)(nil), "milvus.proto.data.GetSegmentInfoResponse")
|
|
proto.RegisterType((*GetInsertBinlogPathsRequest)(nil), "milvus.proto.data.GetInsertBinlogPathsRequest")
|
|
proto.RegisterType((*GetInsertBinlogPathsResponse)(nil), "milvus.proto.data.GetInsertBinlogPathsResponse")
|
|
proto.RegisterType((*GetCollectionStatisticsRequest)(nil), "milvus.proto.data.GetCollectionStatisticsRequest")
|
|
proto.RegisterType((*GetCollectionStatisticsResponse)(nil), "milvus.proto.data.GetCollectionStatisticsResponse")
|
|
proto.RegisterType((*GetPartitionStatisticsRequest)(nil), "milvus.proto.data.GetPartitionStatisticsRequest")
|
|
proto.RegisterType((*GetPartitionStatisticsResponse)(nil), "milvus.proto.data.GetPartitionStatisticsResponse")
|
|
proto.RegisterType((*GetSegmentInfoChannelRequest)(nil), "milvus.proto.data.GetSegmentInfoChannelRequest")
|
|
proto.RegisterType((*VchannelInfo)(nil), "milvus.proto.data.VchannelInfo")
|
|
proto.RegisterType((*WatchDmChannelsRequest)(nil), "milvus.proto.data.WatchDmChannelsRequest")
|
|
proto.RegisterType((*FlushSegmentsRequest)(nil), "milvus.proto.data.FlushSegmentsRequest")
|
|
proto.RegisterType((*SegmentMsg)(nil), "milvus.proto.data.SegmentMsg")
|
|
proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.data.CollectionInfo")
|
|
proto.RegisterType((*SegmentInfo)(nil), "milvus.proto.data.SegmentInfo")
|
|
proto.RegisterType((*SegmentStartPosition)(nil), "milvus.proto.data.SegmentStartPosition")
|
|
proto.RegisterType((*SaveBinlogPathsRequest)(nil), "milvus.proto.data.SaveBinlogPathsRequest")
|
|
proto.RegisterType((*CheckPoint)(nil), "milvus.proto.data.CheckPoint")
|
|
proto.RegisterType((*DeltaLogInfo)(nil), "milvus.proto.data.DeltaLogInfo")
|
|
proto.RegisterType((*DataNodeTtMsg)(nil), "milvus.proto.data.DataNodeTtMsg")
|
|
proto.RegisterType((*SegmentStats)(nil), "milvus.proto.data.SegmentStats")
|
|
proto.RegisterType((*ChannelStatus)(nil), "milvus.proto.data.ChannelStatus")
|
|
proto.RegisterType((*DataNodeInfo)(nil), "milvus.proto.data.DataNodeInfo")
|
|
proto.RegisterType((*SegmentBinlogs)(nil), "milvus.proto.data.SegmentBinlogs")
|
|
proto.RegisterType((*FieldBinlog)(nil), "milvus.proto.data.FieldBinlog")
|
|
proto.RegisterType((*Binlog)(nil), "milvus.proto.data.Binlog")
|
|
proto.RegisterType((*GetRecoveryInfoResponse)(nil), "milvus.proto.data.GetRecoveryInfoResponse")
|
|
proto.RegisterType((*GetRecoveryInfoRequest)(nil), "milvus.proto.data.GetRecoveryInfoRequest")
|
|
proto.RegisterType((*GetFlushedSegmentsRequest)(nil), "milvus.proto.data.GetFlushedSegmentsRequest")
|
|
proto.RegisterType((*GetFlushedSegmentsResponse)(nil), "milvus.proto.data.GetFlushedSegmentsResponse")
|
|
proto.RegisterType((*SegmentFlushCompletedMsg)(nil), "milvus.proto.data.SegmentFlushCompletedMsg")
|
|
proto.RegisterType((*ChannelWatchInfo)(nil), "milvus.proto.data.ChannelWatchInfo")
|
|
proto.RegisterType((*CompactionSegmentBinlogs)(nil), "milvus.proto.data.CompactionSegmentBinlogs")
|
|
proto.RegisterType((*CompactionPlan)(nil), "milvus.proto.data.CompactionPlan")
|
|
proto.RegisterType((*CompactionResult)(nil), "milvus.proto.data.CompactionResult")
|
|
proto.RegisterType((*SegmentFieldBinlogMeta)(nil), "milvus.proto.data.SegmentFieldBinlogMeta")
|
|
proto.RegisterType((*WatchChannelsRequest)(nil), "milvus.proto.data.WatchChannelsRequest")
|
|
proto.RegisterType((*WatchChannelsResponse)(nil), "milvus.proto.data.WatchChannelsResponse")
|
|
proto.RegisterType((*DropVirtualChannelRequest)(nil), "milvus.proto.data.DropVirtualChannelRequest")
|
|
proto.RegisterType((*DropVirtualChannelSegment)(nil), "milvus.proto.data.DropVirtualChannelSegment")
|
|
proto.RegisterType((*DropVirtualChannelResponse)(nil), "milvus.proto.data.DropVirtualChannelResponse")
|
|
}
|
|
|
|
func init() { proto.RegisterFile("data_coord.proto", fileDescriptor_82cd95f524594f49) }
|
|
|
|
var fileDescriptor_82cd95f524594f49 = []byte{
|
|
// 2842 bytes of a gzipped FileDescriptorProto
|
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x5b, 0xdd, 0x6f, 0x1b, 0xc7,
|
|
0x11, 0xf7, 0xf1, 0x43, 0x22, 0x87, 0x1f, 0xa2, 0x57, 0x8e, 0x42, 0x33, 0x8e, 0x2c, 0x5f, 0x12,
|
|
0x47, 0x76, 0x1c, 0xc9, 0x96, 0x1b, 0x34, 0xa8, 0x93, 0x06, 0x91, 0x65, 0xc9, 0x44, 0x25, 0x57,
|
|
0x39, 0x2a, 0x76, 0xd1, 0x14, 0x25, 0x4e, 0xbc, 0x15, 0x75, 0x35, 0xef, 0x8e, 0xbe, 0x5b, 0xca,
|
|
0x56, 0x5e, 0x62, 0x34, 0x40, 0x81, 0x16, 0x41, 0x9a, 0xa2, 0xaf, 0x05, 0x5a, 0xf4, 0xa9, 0x45,
|
|
0x5f, 0xda, 0xc7, 0xb6, 0xff, 0x40, 0xd0, 0xbe, 0xf7, 0x5f, 0xe8, 0x5b, 0xff, 0x86, 0x62, 0x3f,
|
|
0x6e, 0xef, 0x83, 0x47, 0xf2, 0x28, 0xf9, 0xe3, 0x4d, 0xbb, 0x37, 0xb3, 0x33, 0x3b, 0x3b, 0xf3,
|
|
0x9b, 0x99, 0xe5, 0x0a, 0x6a, 0x86, 0x4e, 0xf4, 0x76, 0xc7, 0x71, 0x5c, 0x63, 0xa5, 0xef, 0x3a,
|
|
0xc4, 0x41, 0x67, 0x2d, 0xb3, 0x77, 0x34, 0xf0, 0xf8, 0x68, 0x85, 0x7e, 0x6e, 0x94, 0x3b, 0x8e,
|
|
0x65, 0x39, 0x36, 0x9f, 0x6a, 0x54, 0x4d, 0x9b, 0x60, 0xd7, 0xd6, 0x7b, 0x62, 0x5c, 0x0e, 0x33,
|
|
0x34, 0xca, 0x5e, 0xe7, 0x10, 0x5b, 0x3a, 0x1f, 0xa9, 0x4f, 0xa0, 0xbc, 0xd9, 0x1b, 0x78, 0x87,
|
|
0x1a, 0x7e, 0x34, 0xc0, 0x1e, 0x41, 0xd7, 0x21, 0xb7, 0xaf, 0x7b, 0xb8, 0xae, 0x2c, 0x29, 0xcb,
|
|
0xa5, 0xb5, 0x0b, 0x2b, 0x11, 0x59, 0x42, 0xca, 0x8e, 0xd7, 0x5d, 0xd7, 0x3d, 0xac, 0x31, 0x4a,
|
|
0x84, 0x20, 0x67, 0xec, 0x37, 0x37, 0xea, 0x99, 0x25, 0x65, 0x39, 0xab, 0xb1, 0xbf, 0x91, 0x0a,
|
|
0xe5, 0x8e, 0xd3, 0xeb, 0xe1, 0x0e, 0x31, 0x1d, 0xbb, 0xb9, 0x51, 0xcf, 0xb1, 0x6f, 0x91, 0x39,
|
|
0xf5, 0x77, 0x0a, 0x54, 0x84, 0x68, 0xaf, 0xef, 0xd8, 0x1e, 0x46, 0x37, 0x61, 0xc6, 0x23, 0x3a,
|
|
0x19, 0x78, 0x42, 0xfa, 0x6b, 0x89, 0xd2, 0x5b, 0x8c, 0x44, 0x13, 0xa4, 0xa9, 0xc4, 0x67, 0x87,
|
|
0xc5, 0xa3, 0x45, 0x00, 0x0f, 0x77, 0x2d, 0x6c, 0x93, 0xe6, 0x86, 0x57, 0xcf, 0x2d, 0x65, 0x97,
|
|
0xb3, 0x5a, 0x68, 0x46, 0xfd, 0x8d, 0x02, 0xb5, 0x96, 0x3f, 0xf4, 0xad, 0x73, 0x0e, 0xf2, 0x1d,
|
|
0x67, 0x60, 0x13, 0xa6, 0x60, 0x45, 0xe3, 0x03, 0x74, 0x09, 0xca, 0x9d, 0x43, 0xdd, 0xb6, 0x71,
|
|
0xaf, 0x6d, 0xeb, 0x16, 0x66, 0xaa, 0x14, 0xb5, 0x92, 0x98, 0xbb, 0xa7, 0x5b, 0x38, 0x95, 0x46,
|
|
0x4b, 0x50, 0xea, 0xeb, 0x2e, 0x31, 0x23, 0x36, 0x0b, 0x4f, 0xa9, 0x7f, 0x50, 0x60, 0xe1, 0x63,
|
|
0xcf, 0x33, 0xbb, 0xf6, 0x90, 0x66, 0x0b, 0x30, 0x63, 0x3b, 0x06, 0x6e, 0x6e, 0x30, 0xd5, 0xb2,
|
|
0x9a, 0x18, 0xa1, 0xd7, 0xa0, 0xd8, 0xc7, 0xd8, 0x6d, 0xbb, 0x4e, 0xcf, 0x57, 0xac, 0x40, 0x27,
|
|
0x34, 0xa7, 0x87, 0xd1, 0x27, 0x70, 0xd6, 0x8b, 0x2d, 0xe4, 0xd5, 0xb3, 0x4b, 0xd9, 0xe5, 0xd2,
|
|
0xda, 0x1b, 0x2b, 0x43, 0x5e, 0xb6, 0x12, 0x17, 0xaa, 0x0d, 0x73, 0xab, 0x4f, 0x33, 0x30, 0x2f,
|
|
0xe9, 0xb8, 0xae, 0xf4, 0x6f, 0x6a, 0x39, 0x0f, 0x77, 0xa5, 0x7a, 0x7c, 0x90, 0xc6, 0x72, 0xd2,
|
|
0xe4, 0xd9, 0xb0, 0xc9, 0x53, 0x38, 0x58, 0xdc, 0x9e, 0xf9, 0x21, 0x7b, 0xa2, 0x8b, 0x50, 0xc2,
|
|
0x4f, 0xfa, 0xa6, 0x8b, 0xdb, 0xc4, 0xb4, 0x70, 0x7d, 0x66, 0x49, 0x59, 0xce, 0x69, 0xc0, 0xa7,
|
|
0xf6, 0x4c, 0x2b, 0xec, 0x91, 0xb3, 0xa9, 0x3d, 0x52, 0xfd, 0xa3, 0x02, 0xaf, 0x0e, 0x9d, 0x92,
|
|
0x70, 0x71, 0x0d, 0x6a, 0x6c, 0xe7, 0x81, 0x65, 0xa8, 0xb3, 0x53, 0x83, 0x5f, 0x1e, 0x67, 0xf0,
|
|
0x80, 0x5c, 0x1b, 0xe2, 0x0f, 0x29, 0x99, 0x49, 0xaf, 0xe4, 0x43, 0x78, 0x75, 0x0b, 0x13, 0x21,
|
|
0x80, 0x7e, 0xc3, 0xde, 0xc9, 0x21, 0x20, 0x1a, 0x4b, 0x99, 0xa1, 0x58, 0xfa, 0x6b, 0x46, 0xc6,
|
|
0x12, 0x13, 0xd5, 0xb4, 0x0f, 0x1c, 0x74, 0x01, 0x8a, 0x92, 0x44, 0x78, 0x45, 0x30, 0x81, 0xbe,
|
|
0x0b, 0x79, 0xaa, 0x29, 0x77, 0x89, 0xea, 0xda, 0xa5, 0xe4, 0x3d, 0x85, 0xd6, 0xd4, 0x38, 0x3d,
|
|
0x6a, 0x42, 0xd5, 0x23, 0xba, 0x4b, 0xda, 0x7d, 0xc7, 0x63, 0xe7, 0xcc, 0x1c, 0xa7, 0xb4, 0xa6,
|
|
0x46, 0x57, 0x90, 0x10, 0xb9, 0xe3, 0x75, 0x77, 0x05, 0xa5, 0x56, 0x61, 0x9c, 0xfe, 0x10, 0xdd,
|
|
0x81, 0x32, 0xb6, 0x8d, 0x60, 0xa1, 0x5c, 0xea, 0x85, 0x4a, 0xd8, 0x36, 0xe4, 0x32, 0xc1, 0xf9,
|
|
0xe4, 0xd3, 0x9f, 0xcf, 0x57, 0x0a, 0xd4, 0x87, 0x0f, 0xe8, 0x34, 0x40, 0x79, 0x8b, 0x33, 0x61,
|
|
0x7e, 0x40, 0x63, 0x23, 0x5c, 0x1e, 0x92, 0x26, 0x58, 0x54, 0x13, 0x5e, 0x09, 0xb4, 0x61, 0x5f,
|
|
0x9e, 0x9b, 0xb3, 0x7c, 0xa9, 0xc0, 0x42, 0x5c, 0xd6, 0x69, 0xf6, 0xfd, 0x1d, 0xc8, 0x9b, 0xf6,
|
|
0x81, 0xe3, 0x6f, 0x7b, 0x71, 0x4c, 0x9c, 0x51, 0x59, 0x9c, 0x58, 0xb5, 0xe0, 0xb5, 0x2d, 0x4c,
|
|
0x9a, 0xb6, 0x87, 0x5d, 0xb2, 0x6e, 0xda, 0x3d, 0xa7, 0xbb, 0xab, 0x93, 0xc3, 0x53, 0xc4, 0x48,
|
|
0xc4, 0xdd, 0x33, 0x31, 0x77, 0x57, 0xff, 0xa4, 0xc0, 0x85, 0x64, 0x79, 0x62, 0xeb, 0x0d, 0x28,
|
|
0x1c, 0x98, 0xb8, 0x67, 0x50, 0x9b, 0x29, 0xcc, 0x66, 0x72, 0x4c, 0x63, 0xa5, 0x4f, 0x89, 0xc5,
|
|
0x0e, 0x2f, 0x8d, 0x70, 0xd0, 0x16, 0x71, 0x4d, 0xbb, 0xbb, 0x6d, 0x7a, 0x44, 0xe3, 0xf4, 0x21,
|
|
0x7b, 0x66, 0xd3, 0x7b, 0xe6, 0xaf, 0x14, 0x58, 0xdc, 0xc2, 0xe4, 0xb6, 0x84, 0x5a, 0xfa, 0xdd,
|
|
0xf4, 0x88, 0xd9, 0xf1, 0x9e, 0x6f, 0x11, 0x91, 0x90, 0x33, 0xd5, 0x5f, 0x2b, 0x70, 0x71, 0xa4,
|
|
0x32, 0xc2, 0x74, 0x02, 0x4a, 0x7c, 0xa0, 0x4d, 0x86, 0x92, 0x1f, 0xe0, 0xe3, 0xfb, 0x7a, 0x6f,
|
|
0x80, 0x77, 0x75, 0xd3, 0xe5, 0x50, 0x72, 0x42, 0x60, 0xfd, 0x8b, 0x02, 0xaf, 0x6f, 0x61, 0xb2,
|
|
0xeb, 0xa7, 0x99, 0x97, 0x68, 0x9d, 0x14, 0x15, 0xc5, 0xd7, 0xfc, 0x30, 0x13, 0xb5, 0x7d, 0x29,
|
|
0xe6, 0x5b, 0x64, 0x71, 0x10, 0x0a, 0xc8, 0xdb, 0xbc, 0x16, 0x10, 0xc6, 0x53, 0x9f, 0x66, 0xa1,
|
|
0x7c, 0x5f, 0xd4, 0x07, 0x2c, 0x8d, 0xc4, 0xed, 0xa0, 0x24, 0xdb, 0x21, 0x54, 0x52, 0x24, 0x55,
|
|
0x19, 0x5b, 0x50, 0xf1, 0x30, 0x7e, 0x78, 0x92, 0xa4, 0x51, 0xa6, 0x8c, 0x12, 0xec, 0xb7, 0xe1,
|
|
0xec, 0xc0, 0x3e, 0xa0, 0x65, 0x2d, 0x36, 0xc4, 0x2e, 0x78, 0x75, 0x39, 0x19, 0x79, 0x86, 0x19,
|
|
0xd1, 0x5d, 0x98, 0x8b, 0xaf, 0x95, 0x4f, 0xb5, 0x56, 0x9c, 0x0d, 0x35, 0xa1, 0x66, 0xb8, 0x4e,
|
|
0xbf, 0x8f, 0x8d, 0xb6, 0xe7, 0x2f, 0x35, 0x93, 0x6e, 0x29, 0xc1, 0xe7, 0x2f, 0xa5, 0xfe, 0x52,
|
|
0x81, 0x85, 0x07, 0x3a, 0xe9, 0x1c, 0x6e, 0x58, 0xe2, 0x70, 0x4e, 0xe1, 0xda, 0x1f, 0x42, 0xf1,
|
|
0x48, 0x1c, 0x84, 0x8f, 0x5f, 0x17, 0x13, 0x14, 0x0a, 0x1f, 0xb9, 0x16, 0x70, 0xa8, 0xdf, 0x2a,
|
|
0x70, 0x8e, 0x35, 0x11, 0xbe, 0x76, 0x2f, 0x3e, 0xc8, 0x26, 0x34, 0x12, 0xe8, 0x32, 0x54, 0x2d,
|
|
0xdd, 0x7d, 0xd8, 0x0a, 0x68, 0xf2, 0x8c, 0x26, 0x36, 0xab, 0x3e, 0x01, 0x10, 0xa3, 0x1d, 0xaf,
|
|
0x7b, 0x02, 0xfd, 0xdf, 0x87, 0x59, 0x21, 0x55, 0xc4, 0xdb, 0xa4, 0x83, 0xf5, 0xc9, 0xd5, 0x7f,
|
|
0x29, 0x50, 0x0d, 0x10, 0x94, 0x45, 0x55, 0x15, 0x32, 0x32, 0x96, 0x32, 0xcd, 0x0d, 0xf4, 0x21,
|
|
0xcc, 0xf0, 0xb6, 0x51, 0xac, 0xfd, 0x56, 0x74, 0x6d, 0xd1, 0x52, 0x86, 0x60, 0x98, 0x4d, 0x68,
|
|
0x82, 0x89, 0xda, 0x48, 0xa2, 0x0e, 0xef, 0x30, 0xb2, 0x5a, 0x68, 0x06, 0x35, 0x61, 0x2e, 0x5a,
|
|
0xb4, 0xf9, 0x31, 0xb3, 0x34, 0x0a, 0x6d, 0x36, 0x74, 0xa2, 0x33, 0xb0, 0xa9, 0x46, 0x6a, 0x36,
|
|
0x4f, 0xfd, 0x5f, 0x1e, 0x4a, 0xa1, 0x5d, 0x0e, 0xed, 0x24, 0x7e, 0xa4, 0x99, 0xc9, 0xb8, 0x99,
|
|
0x1d, 0xee, 0x1c, 0xde, 0x82, 0xaa, 0xc9, 0x72, 0x75, 0x5b, 0xb8, 0x22, 0x03, 0xd7, 0xa2, 0x56,
|
|
0xe1, 0xb3, 0x22, 0x2e, 0xd0, 0x22, 0x94, 0xec, 0x81, 0xd5, 0x76, 0x0e, 0xda, 0xae, 0xf3, 0xd8,
|
|
0x13, 0x2d, 0x48, 0xd1, 0x1e, 0x58, 0x3f, 0x3c, 0xd0, 0x9c, 0xc7, 0x5e, 0x50, 0xe5, 0xce, 0x4c,
|
|
0x59, 0xe5, 0x2e, 0x42, 0xc9, 0xd2, 0x9f, 0xd0, 0x55, 0xdb, 0xf6, 0xc0, 0x62, 0xdd, 0x49, 0x56,
|
|
0x2b, 0x5a, 0xfa, 0x13, 0xcd, 0x79, 0x7c, 0x6f, 0x60, 0xa1, 0x65, 0xa8, 0xf5, 0x74, 0x8f, 0xb4,
|
|
0xc3, 0xed, 0x4d, 0x81, 0xb5, 0x37, 0x55, 0x3a, 0x7f, 0x27, 0x68, 0x71, 0x86, 0xeb, 0xe5, 0xe2,
|
|
0x29, 0xea, 0x65, 0xc3, 0xea, 0x05, 0x0b, 0x41, 0xfa, 0x7a, 0xd9, 0xb0, 0x7a, 0x72, 0x99, 0xf7,
|
|
0x61, 0x76, 0x9f, 0x55, 0x40, 0x5e, 0xbd, 0x34, 0x12, 0xa1, 0x36, 0x69, 0xf1, 0xc3, 0x0b, 0x25,
|
|
0xcd, 0x27, 0x47, 0x1f, 0x40, 0x91, 0xa5, 0x1e, 0xc6, 0x5b, 0x4e, 0xc5, 0x1b, 0x30, 0x50, 0x6e,
|
|
0x03, 0xf7, 0x88, 0xce, 0xb8, 0x2b, 0xe9, 0xb8, 0x25, 0x03, 0xba, 0x0e, 0xf3, 0x1d, 0x17, 0xeb,
|
|
0x04, 0x1b, 0xeb, 0xc7, 0xb7, 0x1d, 0xab, 0xaf, 0x33, 0x67, 0xaa, 0x57, 0x97, 0x94, 0xe5, 0x82,
|
|
0x96, 0xf4, 0x89, 0x02, 0x43, 0x47, 0x8e, 0x36, 0x5d, 0xc7, 0xaa, 0xcf, 0x71, 0x60, 0x88, 0xce,
|
|
0xa2, 0xd7, 0x01, 0x7c, 0xe8, 0xd6, 0x49, 0xbd, 0xc6, 0x4e, 0xb1, 0x28, 0x66, 0x3e, 0x26, 0xea,
|
|
0x17, 0x70, 0x2e, 0xf0, 0x90, 0xd0, 0x69, 0x0c, 0x1f, 0xac, 0x72, 0xd2, 0x83, 0x1d, 0x5f, 0xbb,
|
|
0xfe, 0x2d, 0x07, 0x0b, 0x2d, 0xfd, 0x08, 0x3f, 0xff, 0x32, 0x39, 0x15, 0x1e, 0x6f, 0xc3, 0x59,
|
|
0x56, 0x19, 0xaf, 0x85, 0xf4, 0x19, 0x93, 0x81, 0xc3, 0xc7, 0x39, 0xcc, 0x88, 0x3e, 0xa2, 0xa5,
|
|
0x03, 0xee, 0x3c, 0xdc, 0x75, 0xcc, 0x20, 0xfb, 0xbe, 0x9e, 0xb0, 0xce, 0x6d, 0x49, 0xa5, 0x85,
|
|
0x39, 0xd0, 0xee, 0x30, 0xb4, 0xf1, 0xbc, 0xfb, 0xf6, 0xd8, 0xfe, 0x2b, 0xb0, 0x7e, 0x1c, 0xe1,
|
|
0x50, 0x1d, 0x66, 0x45, 0x76, 0x67, 0x71, 0x5f, 0xd0, 0xfc, 0x21, 0xda, 0x85, 0x79, 0xbe, 0x83,
|
|
0x96, 0x70, 0x6a, 0xbe, 0xf9, 0x42, 0xaa, 0xcd, 0x27, 0xb1, 0x46, 0x63, 0xa2, 0x38, 0x6d, 0x4c,
|
|
0xd4, 0x61, 0x56, 0xf8, 0x29, 0xc3, 0x82, 0x82, 0xe6, 0x0f, 0x69, 0x13, 0x01, 0x81, 0xc5, 0x26,
|
|
0xdc, 0x05, 0x7c, 0x1f, 0x0a, 0xd2, 0x87, 0x33, 0xa9, 0x7d, 0x58, 0xf2, 0xc4, 0x51, 0x38, 0x1b,
|
|
0x43, 0x61, 0xf5, 0xdf, 0x0a, 0x94, 0x37, 0xa8, 0xd2, 0xdb, 0x4e, 0x97, 0xe5, 0x8c, 0xb7, 0xa0,
|
|
0xea, 0xe2, 0x8e, 0xe3, 0x1a, 0x6d, 0x6c, 0x13, 0xd7, 0xc4, 0xbc, 0xdf, 0xcc, 0x69, 0x15, 0x3e,
|
|
0x7b, 0x87, 0x4f, 0x52, 0x32, 0x0a, 0xac, 0x1e, 0xd1, 0xad, 0x7e, 0xfb, 0x80, 0x06, 0x70, 0x86,
|
|
0x93, 0xc9, 0x59, 0x16, 0xbf, 0x97, 0xa0, 0x1c, 0x90, 0x11, 0x87, 0xc9, 0xcf, 0x69, 0x25, 0x39,
|
|
0xb7, 0xe7, 0xa0, 0x37, 0xa1, 0xca, 0xac, 0xd6, 0xee, 0x39, 0xdd, 0x36, 0xed, 0xcd, 0x44, 0x3a,
|
|
0x29, 0x1b, 0x42, 0x2d, 0x7a, 0x1a, 0x51, 0x2a, 0xcf, 0xfc, 0x1c, 0x8b, 0x84, 0x22, 0xa9, 0x5a,
|
|
0xe6, 0xe7, 0x98, 0x66, 0xf3, 0x0a, 0xcd, 0x8e, 0xf7, 0x1c, 0x03, 0xef, 0x9d, 0xb0, 0x96, 0x48,
|
|
0x71, 0x2f, 0x77, 0x01, 0x8a, 0x72, 0x07, 0x62, 0x4b, 0xc1, 0x04, 0xda, 0x84, 0xaa, 0x5f, 0x66,
|
|
0xb6, 0x79, 0xf7, 0x90, 0x1b, 0x59, 0xdb, 0x85, 0xf2, 0x9b, 0xa7, 0x55, 0x7c, 0x36, 0x36, 0x54,
|
|
0x37, 0xa1, 0x1c, 0xfe, 0x4c, 0xa5, 0xb6, 0xe2, 0x8e, 0x22, 0x27, 0xa8, 0xbf, 0xdd, 0x1b, 0x58,
|
|
0xf4, 0x4c, 0x05, 0x74, 0xf8, 0x43, 0xf5, 0x4b, 0x05, 0x2a, 0x22, 0x29, 0xb7, 0xe4, 0xbd, 0x31,
|
|
0xdb, 0x9a, 0xc2, 0xb6, 0xc6, 0xfe, 0x46, 0xdf, 0x8b, 0x5e, 0x3a, 0xbd, 0x99, 0x18, 0xe6, 0x6c,
|
|
0x11, 0x56, 0xff, 0x46, 0x32, 0x72, 0x9a, 0x6e, 0xf5, 0x29, 0x75, 0x34, 0x71, 0x34, 0xcc, 0xd1,
|
|
0xea, 0x30, 0xab, 0x1b, 0x86, 0x8b, 0x3d, 0x4f, 0xe8, 0xe1, 0x0f, 0xe9, 0x97, 0x23, 0xec, 0x7a,
|
|
0xbe, 0xcb, 0x67, 0x35, 0x7f, 0x88, 0x3e, 0x80, 0x82, 0x2c, 0x98, 0xb3, 0x49, 0x45, 0x52, 0x58,
|
|
0x4f, 0xd1, 0x5d, 0x49, 0x0e, 0xf5, 0xeb, 0x0c, 0x54, 0x85, 0xc1, 0xd6, 0x45, 0xd6, 0x1c, 0x1f,
|
|
0x7c, 0xeb, 0x50, 0x3e, 0x08, 0xa2, 0x7b, 0xdc, 0x2d, 0x4a, 0x18, 0x04, 0x22, 0x3c, 0x93, 0x02,
|
|
0x30, 0x9a, 0xb7, 0x73, 0xa7, 0xca, 0xdb, 0xf9, 0x29, 0x31, 0x4a, 0xfd, 0x09, 0x94, 0x42, 0x5f,
|
|
0x18, 0xb8, 0xf2, 0x7b, 0x15, 0x61, 0x0a, 0x7f, 0x88, 0x6e, 0x06, 0x65, 0x09, 0xb7, 0xc1, 0xf9,
|
|
0x04, 0x21, 0xb1, 0x8a, 0x44, 0xfd, 0xb3, 0x02, 0x33, 0x62, 0xe5, 0x8b, 0x50, 0x12, 0x68, 0xc2,
|
|
0x4a, 0x36, 0xbe, 0x3a, 0x88, 0x29, 0x5a, 0xb3, 0x3d, 0x3b, 0x38, 0x39, 0x0f, 0x85, 0x18, 0x90,
|
|
0xcc, 0x0a, 0x44, 0xf7, 0x3f, 0x85, 0xd0, 0x83, 0x7e, 0x62, 0xc0, 0xf1, 0xad, 0xc2, 0xee, 0x84,
|
|
0x35, 0xdc, 0x71, 0x8e, 0xb0, 0x7b, 0x7c, 0xfa, 0x9b, 0xb7, 0x5b, 0x21, 0x4f, 0x4d, 0xd9, 0xda,
|
|
0x49, 0x06, 0x74, 0x2b, 0x30, 0x77, 0x36, 0xe9, 0xe2, 0x21, 0x0c, 0x1d, 0xc2, 0xcf, 0x02, 0xb3,
|
|
0x7f, 0xc3, 0xef, 0x10, 0xa3, 0x5b, 0x39, 0x69, 0x49, 0xf2, 0x4c, 0x3a, 0x06, 0xf5, 0xb7, 0x0a,
|
|
0x9c, 0xdf, 0xc2, 0x64, 0x33, 0xda, 0x97, 0xbf, 0x6c, 0xad, 0x2c, 0x68, 0x24, 0x29, 0x75, 0x9a,
|
|
0x53, 0x6f, 0x40, 0x41, 0xde, 0x30, 0xf0, 0xdb, 0x5d, 0x39, 0x56, 0x7f, 0xa1, 0x40, 0x5d, 0x48,
|
|
0x61, 0x32, 0x69, 0x35, 0xdc, 0xc3, 0x04, 0x1b, 0x2f, 0xba, 0xe5, 0xfd, 0xbd, 0x02, 0xb5, 0x30,
|
|
0x94, 0x33, 0x34, 0x7e, 0x0f, 0xf2, 0xec, 0x66, 0x41, 0x68, 0x30, 0xd1, 0x59, 0x39, 0x35, 0x85,
|
|
0x0c, 0x56, 0xa1, 0xed, 0xc9, 0xac, 0x23, 0x86, 0x41, 0x3e, 0xc9, 0x4e, 0x9d, 0x4f, 0xd4, 0xaf,
|
|
0x32, 0x50, 0x0f, 0x9a, 0x85, 0x17, 0x0e, 0xd9, 0x23, 0x4a, 0xc9, 0xec, 0x33, 0x2a, 0x25, 0x73,
|
|
0xd3, 0xc2, 0xf4, 0x3f, 0x33, 0x50, 0x0d, 0xcc, 0xb1, 0xdb, 0xd3, 0x6d, 0xb4, 0x00, 0x33, 0xfd,
|
|
0x9e, 0x1e, 0xdc, 0xf9, 0x89, 0x11, 0x6a, 0xc9, 0xda, 0x23, 0x6a, 0x80, 0x77, 0x92, 0xcc, 0x3f,
|
|
0xc2, 0xc2, 0x5a, 0x6c, 0x09, 0xda, 0x84, 0xf1, 0x32, 0x9e, 0xb5, 0xd2, 0xa2, 0xde, 0xe1, 0xe7,
|
|
0x4c, 0xbb, 0xe8, 0x6b, 0x80, 0xe8, 0x07, 0x67, 0x40, 0xda, 0xa6, 0xdd, 0xf6, 0x70, 0xc7, 0xb1,
|
|
0x0d, 0x8f, 0x61, 0x6f, 0x5e, 0xab, 0x89, 0x2f, 0x4d, 0xbb, 0xc5, 0xe7, 0xd1, 0x7b, 0x90, 0x23,
|
|
0xc7, 0x7d, 0x0e, 0xc0, 0xd5, 0x44, 0x60, 0x0b, 0xf4, 0xda, 0x3b, 0xee, 0x63, 0x8d, 0x91, 0xa3,
|
|
0x45, 0x00, 0xba, 0x14, 0x71, 0xf5, 0x23, 0xdc, 0xf3, 0x7f, 0xad, 0x0c, 0x66, 0xa8, 0x23, 0xfa,
|
|
0xb7, 0x11, 0xb3, 0x1c, 0xf5, 0xc5, 0x50, 0xfd, 0x7b, 0x06, 0x6a, 0xc1, 0x92, 0x1a, 0xf6, 0x06,
|
|
0x3d, 0x32, 0xd2, 0x7e, 0xe3, 0x5b, 0xb0, 0x49, 0xb9, 0xfc, 0x23, 0x28, 0x89, 0x9b, 0x91, 0x29,
|
|
0x0e, 0x1a, 0x38, 0xcb, 0xf6, 0x18, 0xcf, 0xcb, 0x3f, 0x23, 0xcf, 0x9b, 0x99, 0xd6, 0xf3, 0x5a,
|
|
0xb0, 0xe0, 0x43, 0x56, 0x40, 0xb0, 0x83, 0x89, 0x3e, 0xa6, 0x56, 0xb8, 0x08, 0x25, 0x9e, 0x8a,
|
|
0x78, 0x0e, 0xe6, 0xe5, 0x33, 0xec, 0xcb, 0xbe, 0x52, 0xfd, 0x29, 0x9c, 0x63, 0x21, 0x1f, 0xbf,
|
|
0x40, 0x4d, 0x73, 0x9b, 0xad, 0xca, 0xe2, 0x9c, 0x16, 0xe2, 0xdc, 0xbb, 0x8b, 0x5a, 0x64, 0x4e,
|
|
0xdd, 0x86, 0x57, 0x62, 0xeb, 0x9f, 0x02, 0xd2, 0xd5, 0x7f, 0x28, 0x70, 0x7e, 0xc3, 0x75, 0xfa,
|
|
0xf7, 0x4d, 0x97, 0x0c, 0xf4, 0x5e, 0xf4, 0x4a, 0xfe, 0xf9, 0xb4, 0x17, 0x77, 0x43, 0x59, 0x84,
|
|
0x83, 0xce, 0xb5, 0x84, 0x23, 0x1b, 0x56, 0x4a, 0x1c, 0x55, 0x28, 0xe7, 0xfc, 0x37, 0x9b, 0xa4,
|
|
0xbc, 0xa0, 0x9b, 0x80, 0xa4, 0x69, 0x92, 0x6c, 0xe2, 0x7d, 0x43, 0xf6, 0xa4, 0xf7, 0x0d, 0x23,
|
|
0xbc, 0x3f, 0xf7, 0x8c, 0xbc, 0x7f, 0xda, 0xf2, 0x18, 0xdd, 0x85, 0xe8, 0x5d, 0x10, 0x83, 0x9d,
|
|
0x13, 0x5d, 0x22, 0xad, 0x03, 0x04, 0xf7, 0x22, 0xe2, 0x3d, 0x45, 0x9a, 0x65, 0x42, 0x5c, 0xf4,
|
|
0xb4, 0x24, 0xd2, 0xb0, 0xfb, 0xcc, 0x48, 0x1f, 0xff, 0x09, 0x34, 0x92, 0xbc, 0xf4, 0x14, 0x9e,
|
|
0x7f, 0xf5, 0x06, 0x9c, 0x1d, 0xca, 0xd0, 0xa8, 0x0a, 0xf0, 0xa9, 0xdd, 0x11, 0xa5, 0x4b, 0xed,
|
|
0x0c, 0x2a, 0x43, 0xc1, 0x2f, 0x64, 0x6a, 0xca, 0xd5, 0x56, 0x38, 0x51, 0x51, 0xf4, 0x46, 0xaf,
|
|
0xc2, 0xfc, 0xa7, 0xb6, 0x81, 0x0f, 0x4c, 0x1b, 0x1b, 0xc1, 0xa7, 0xda, 0x19, 0x34, 0x0f, 0x73,
|
|
0x4d, 0xdb, 0xc6, 0x6e, 0x68, 0x52, 0xa1, 0x93, 0x3b, 0xd8, 0xed, 0xe2, 0xd0, 0x64, 0x66, 0xed,
|
|
0x9b, 0x79, 0x28, 0xd2, 0xce, 0xf1, 0xb6, 0xe3, 0xb8, 0x06, 0xea, 0x03, 0x62, 0x3f, 0x7a, 0x5a,
|
|
0x7d, 0xc7, 0x96, 0xaf, 0x03, 0xd0, 0xf5, 0x11, 0xc6, 0x1c, 0x26, 0x15, 0x91, 0xdb, 0xb8, 0x3c,
|
|
0x82, 0x23, 0x46, 0xae, 0x9e, 0x41, 0x16, 0x93, 0x48, 0x53, 0xdd, 0x9e, 0xd9, 0x79, 0xe8, 0x5f,
|
|
0x6f, 0x8f, 0x91, 0x18, 0x23, 0xf5, 0x25, 0xc6, 0x1e, 0x1d, 0x88, 0x01, 0xff, 0x65, 0xda, 0x3f,
|
|
0x29, 0xf5, 0x0c, 0x7a, 0x04, 0xe7, 0xb6, 0x30, 0x09, 0x7e, 0x8c, 0xf4, 0x05, 0xae, 0x8d, 0x16,
|
|
0x38, 0x44, 0x3c, 0xa5, 0xc8, 0x6d, 0xc8, 0xb3, 0x92, 0x14, 0x25, 0x95, 0x7d, 0xe1, 0x27, 0x72,
|
|
0x8d, 0xa5, 0xd1, 0x04, 0x72, 0xb5, 0x9f, 0xc1, 0x5c, 0xec, 0x09, 0x10, 0xba, 0x92, 0xc0, 0x96,
|
|
0xfc, 0x98, 0xab, 0x71, 0x35, 0x0d, 0xa9, 0x94, 0xd5, 0x85, 0x6a, 0xf4, 0x27, 0x53, 0xb4, 0x9c,
|
|
0xc0, 0x9f, 0xf8, 0x7c, 0xa3, 0x71, 0x25, 0x05, 0xa5, 0x14, 0x64, 0x41, 0x2d, 0xfe, 0x24, 0x05,
|
|
0x5d, 0x1d, 0xbb, 0x40, 0xd4, 0xdd, 0xde, 0x49, 0x45, 0x2b, 0xc5, 0x1d, 0x33, 0x27, 0x18, 0x7a,
|
|
0x12, 0x81, 0x56, 0x92, 0x97, 0x19, 0xf5, 0x56, 0xa3, 0xb1, 0x9a, 0x9a, 0x5e, 0x8a, 0xfe, 0x39,
|
|
0x6f, 0x85, 0x93, 0x9e, 0x15, 0xa0, 0x1b, 0xc9, 0xcb, 0x8d, 0x79, 0x0f, 0xd1, 0x58, 0x9b, 0x86,
|
|
0x45, 0x2a, 0xf1, 0x05, 0xeb, 0x61, 0x13, 0x7e, 0x9a, 0x8f, 0xc7, 0x9d, 0xbf, 0xde, 0xe8, 0x37,
|
|
0x07, 0x8d, 0x1b, 0x53, 0x70, 0x48, 0x05, 0x9c, 0xf8, 0xa3, 0x1f, 0x3f, 0x0c, 0x57, 0x27, 0x7a,
|
|
0xcd, 0xc9, 0x62, 0xf0, 0x33, 0x98, 0x8b, 0xfd, 0x90, 0x90, 0x18, 0x35, 0xc9, 0x3f, 0x36, 0x34,
|
|
0xc6, 0x01, 0x3a, 0x0f, 0xc9, 0xd8, 0x95, 0x00, 0x1a, 0xe1, 0xfd, 0x09, 0xd7, 0x06, 0x8d, 0xab,
|
|
0x69, 0x48, 0xe5, 0x46, 0x3c, 0x06, 0x97, 0xb1, 0xb6, 0x1a, 0x5d, 0x4b, 0x5e, 0x23, 0xf9, 0x4a,
|
|
0xa0, 0xf1, 0x6e, 0x4a, 0x6a, 0x29, 0xb4, 0x0d, 0xb0, 0x85, 0xc9, 0x0e, 0x26, 0x2e, 0xf5, 0x91,
|
|
0xcb, 0x89, 0x26, 0x0f, 0x08, 0x7c, 0x31, 0x6f, 0x4f, 0xa4, 0x93, 0x02, 0x7e, 0x04, 0xc8, 0xcf,
|
|
0x73, 0xa1, 0x9f, 0xb1, 0xde, 0x18, 0xdb, 0xbe, 0xf0, 0x5e, 0x63, 0xd2, 0xd9, 0x3c, 0x82, 0xda,
|
|
0x8e, 0x6e, 0xd3, 0xa4, 0x1d, 0xac, 0x7b, 0x2d, 0x51, 0xb1, 0x38, 0xd9, 0x08, 0x6b, 0x8d, 0xa4,
|
|
0x96, 0x9b, 0x79, 0x2c, 0x73, 0xa8, 0x2e, 0x43, 0x10, 0xc7, 0xb1, 0x25, 0xb0, 0x46, 0x8c, 0x70,
|
|
0x04, 0xb6, 0x8c, 0xa1, 0x97, 0x82, 0x9f, 0x2a, 0xec, 0x69, 0x59, 0x8c, 0xe0, 0x81, 0x49, 0x0e,
|
|
0x69, 0x57, 0xeb, 0xa5, 0x51, 0x81, 0x11, 0x4e, 0xa1, 0x82, 0xa0, 0x97, 0x2a, 0x18, 0x50, 0x89,
|
|
0x74, 0x07, 0x28, 0xe9, 0xb7, 0xa8, 0xa4, 0xfe, 0xa4, 0xb1, 0x3c, 0x99, 0x50, 0x4a, 0x39, 0x84,
|
|
0x8a, 0xef, 0xaf, 0xdc, 0xb8, 0x57, 0x46, 0x69, 0x1a, 0xd0, 0x8c, 0x08, 0xb7, 0x64, 0xd2, 0x70,
|
|
0xb8, 0x0d, 0x17, 0x7e, 0x28, 0x5d, 0xc3, 0x30, 0x2e, 0xdc, 0x46, 0x57, 0x93, 0xea, 0x99, 0xb5,
|
|
0xff, 0xe4, 0xa0, 0xe0, 0x5f, 0xe6, 0xbf, 0x84, 0x8a, 0xec, 0x25, 0x94, 0x48, 0x9f, 0xc1, 0x5c,
|
|
0xec, 0xdd, 0x4f, 0x22, 0x82, 0x26, 0xbf, 0x0d, 0x9a, 0x04, 0x01, 0x0f, 0xc4, 0x7f, 0x03, 0x48,
|
|
0xb4, 0x7c, 0x7b, 0x54, 0x99, 0x15, 0x07, 0xca, 0x09, 0x0b, 0x3f, 0x77, 0x58, 0xbc, 0x07, 0x10,
|
|
0x82, 0xad, 0xf1, 0xb7, 0x39, 0x34, 0x12, 0x27, 0x28, 0xbc, 0x7e, 0xf3, 0xc7, 0x37, 0xba, 0x26,
|
|
0x39, 0x1c, 0xec, 0xd3, 0x2f, 0xab, 0x9c, 0xf4, 0x5d, 0xd3, 0x11, 0x7f, 0xad, 0xfa, 0x27, 0xba,
|
|
0xca, 0xb8, 0x57, 0xa9, 0x80, 0xfe, 0xfe, 0xfe, 0x0c, 0x1b, 0xdd, 0xfc, 0x7f, 0x00, 0x00, 0x00,
|
|
0xff, 0xff, 0xf4, 0x7a, 0xd1, 0x47, 0x2f, 0x32, 0x00, 0x00,
|
|
}
|
|
|
|
// Reference imports to suppress errors if they are not otherwise used.
|
|
var _ context.Context
|
|
var _ grpc.ClientConn
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
const _ = grpc.SupportPackageIsVersion4
|
|
|
|
// DataCoordClient is the client API for DataCoord service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type DataCoordClient interface {
|
|
GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error)
|
|
GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
|
GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
|
Flush(ctx context.Context, in *FlushRequest, opts ...grpc.CallOption) (*FlushResponse, error)
|
|
AssignSegmentID(ctx context.Context, in *AssignSegmentIDRequest, opts ...grpc.CallOption) (*AssignSegmentIDResponse, error)
|
|
GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error)
|
|
GetSegmentStates(ctx context.Context, in *GetSegmentStatesRequest, opts ...grpc.CallOption) (*GetSegmentStatesResponse, error)
|
|
GetInsertBinlogPaths(ctx context.Context, in *GetInsertBinlogPathsRequest, opts ...grpc.CallOption) (*GetInsertBinlogPathsResponse, error)
|
|
GetCollectionStatistics(ctx context.Context, in *GetCollectionStatisticsRequest, opts ...grpc.CallOption) (*GetCollectionStatisticsResponse, error)
|
|
GetPartitionStatistics(ctx context.Context, in *GetPartitionStatisticsRequest, opts ...grpc.CallOption) (*GetPartitionStatisticsResponse, error)
|
|
GetSegmentInfoChannel(ctx context.Context, in *GetSegmentInfoChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
|
SaveBinlogPaths(ctx context.Context, in *SaveBinlogPathsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
GetRecoveryInfo(ctx context.Context, in *GetRecoveryInfoRequest, opts ...grpc.CallOption) (*GetRecoveryInfoResponse, error)
|
|
GetFlushedSegments(ctx context.Context, in *GetFlushedSegmentsRequest, opts ...grpc.CallOption) (*GetFlushedSegmentsResponse, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
|
|
CompleteCompaction(ctx context.Context, in *CompactionResult, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
ManualCompaction(ctx context.Context, in *milvuspb.ManualCompactionRequest, opts ...grpc.CallOption) (*milvuspb.ManualCompactionResponse, error)
|
|
GetCompactionState(ctx context.Context, in *milvuspb.GetCompactionStateRequest, opts ...grpc.CallOption) (*milvuspb.GetCompactionStateResponse, error)
|
|
GetCompactionStateWithPlans(ctx context.Context, in *milvuspb.GetCompactionPlansRequest, opts ...grpc.CallOption) (*milvuspb.GetCompactionPlansResponse, error)
|
|
WatchChannels(ctx context.Context, in *WatchChannelsRequest, opts ...grpc.CallOption) (*WatchChannelsResponse, error)
|
|
GetFlushState(ctx context.Context, in *milvuspb.GetFlushStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushStateResponse, error)
|
|
DropVirtualChannel(ctx context.Context, in *DropVirtualChannelRequest, opts ...grpc.CallOption) (*DropVirtualChannelResponse, error)
|
|
}
|
|
|
|
type dataCoordClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewDataCoordClient(cc *grpc.ClientConn) DataCoordClient {
|
|
return &dataCoordClient{cc}
|
|
}
|
|
|
|
func (c *dataCoordClient) GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error) {
|
|
out := new(internalpb.ComponentStates)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetComponentStates", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetTimeTickChannel(ctx context.Context, in *internalpb.GetTimeTickChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetTimeTickChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetStatisticsChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) Flush(ctx context.Context, in *FlushRequest, opts ...grpc.CallOption) (*FlushResponse, error) {
|
|
out := new(FlushResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/Flush", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) AssignSegmentID(ctx context.Context, in *AssignSegmentIDRequest, opts ...grpc.CallOption) (*AssignSegmentIDResponse, error) {
|
|
out := new(AssignSegmentIDResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/AssignSegmentID", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetSegmentInfo(ctx context.Context, in *GetSegmentInfoRequest, opts ...grpc.CallOption) (*GetSegmentInfoResponse, error) {
|
|
out := new(GetSegmentInfoResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetSegmentInfo", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetSegmentStates(ctx context.Context, in *GetSegmentStatesRequest, opts ...grpc.CallOption) (*GetSegmentStatesResponse, error) {
|
|
out := new(GetSegmentStatesResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetSegmentStates", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetInsertBinlogPaths(ctx context.Context, in *GetInsertBinlogPathsRequest, opts ...grpc.CallOption) (*GetInsertBinlogPathsResponse, error) {
|
|
out := new(GetInsertBinlogPathsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetInsertBinlogPaths", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetCollectionStatistics(ctx context.Context, in *GetCollectionStatisticsRequest, opts ...grpc.CallOption) (*GetCollectionStatisticsResponse, error) {
|
|
out := new(GetCollectionStatisticsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetCollectionStatistics", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetPartitionStatistics(ctx context.Context, in *GetPartitionStatisticsRequest, opts ...grpc.CallOption) (*GetPartitionStatisticsResponse, error) {
|
|
out := new(GetPartitionStatisticsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetPartitionStatistics", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetSegmentInfoChannel(ctx context.Context, in *GetSegmentInfoChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetSegmentInfoChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) SaveBinlogPaths(ctx context.Context, in *SaveBinlogPathsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/SaveBinlogPaths", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetRecoveryInfo(ctx context.Context, in *GetRecoveryInfoRequest, opts ...grpc.CallOption) (*GetRecoveryInfoResponse, error) {
|
|
out := new(GetRecoveryInfoResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetRecoveryInfo", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetFlushedSegments(ctx context.Context, in *GetFlushedSegmentsRequest, opts ...grpc.CallOption) (*GetFlushedSegmentsResponse, error) {
|
|
out := new(GetFlushedSegmentsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetFlushedSegments", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
|
|
out := new(milvuspb.GetMetricsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetMetrics", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) CompleteCompaction(ctx context.Context, in *CompactionResult, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/CompleteCompaction", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) ManualCompaction(ctx context.Context, in *milvuspb.ManualCompactionRequest, opts ...grpc.CallOption) (*milvuspb.ManualCompactionResponse, error) {
|
|
out := new(milvuspb.ManualCompactionResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/ManualCompaction", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetCompactionState(ctx context.Context, in *milvuspb.GetCompactionStateRequest, opts ...grpc.CallOption) (*milvuspb.GetCompactionStateResponse, error) {
|
|
out := new(milvuspb.GetCompactionStateResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetCompactionState", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetCompactionStateWithPlans(ctx context.Context, in *milvuspb.GetCompactionPlansRequest, opts ...grpc.CallOption) (*milvuspb.GetCompactionPlansResponse, error) {
|
|
out := new(milvuspb.GetCompactionPlansResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetCompactionStateWithPlans", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) WatchChannels(ctx context.Context, in *WatchChannelsRequest, opts ...grpc.CallOption) (*WatchChannelsResponse, error) {
|
|
out := new(WatchChannelsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/WatchChannels", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) GetFlushState(ctx context.Context, in *milvuspb.GetFlushStateRequest, opts ...grpc.CallOption) (*milvuspb.GetFlushStateResponse, error) {
|
|
out := new(milvuspb.GetFlushStateResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/GetFlushState", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataCoordClient) DropVirtualChannel(ctx context.Context, in *DropVirtualChannelRequest, opts ...grpc.CallOption) (*DropVirtualChannelResponse, error) {
|
|
out := new(DropVirtualChannelResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataCoord/DropVirtualChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// DataCoordServer is the server API for DataCoord service.
|
|
type DataCoordServer interface {
|
|
GetComponentStates(context.Context, *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error)
|
|
GetTimeTickChannel(context.Context, *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error)
|
|
GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
|
|
Flush(context.Context, *FlushRequest) (*FlushResponse, error)
|
|
AssignSegmentID(context.Context, *AssignSegmentIDRequest) (*AssignSegmentIDResponse, error)
|
|
GetSegmentInfo(context.Context, *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error)
|
|
GetSegmentStates(context.Context, *GetSegmentStatesRequest) (*GetSegmentStatesResponse, error)
|
|
GetInsertBinlogPaths(context.Context, *GetInsertBinlogPathsRequest) (*GetInsertBinlogPathsResponse, error)
|
|
GetCollectionStatistics(context.Context, *GetCollectionStatisticsRequest) (*GetCollectionStatisticsResponse, error)
|
|
GetPartitionStatistics(context.Context, *GetPartitionStatisticsRequest) (*GetPartitionStatisticsResponse, error)
|
|
GetSegmentInfoChannel(context.Context, *GetSegmentInfoChannelRequest) (*milvuspb.StringResponse, error)
|
|
SaveBinlogPaths(context.Context, *SaveBinlogPathsRequest) (*commonpb.Status, error)
|
|
GetRecoveryInfo(context.Context, *GetRecoveryInfoRequest) (*GetRecoveryInfoResponse, error)
|
|
GetFlushedSegments(context.Context, *GetFlushedSegmentsRequest) (*GetFlushedSegmentsResponse, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
|
|
CompleteCompaction(context.Context, *CompactionResult) (*commonpb.Status, error)
|
|
ManualCompaction(context.Context, *milvuspb.ManualCompactionRequest) (*milvuspb.ManualCompactionResponse, error)
|
|
GetCompactionState(context.Context, *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error)
|
|
GetCompactionStateWithPlans(context.Context, *milvuspb.GetCompactionPlansRequest) (*milvuspb.GetCompactionPlansResponse, error)
|
|
WatchChannels(context.Context, *WatchChannelsRequest) (*WatchChannelsResponse, error)
|
|
GetFlushState(context.Context, *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error)
|
|
DropVirtualChannel(context.Context, *DropVirtualChannelRequest) (*DropVirtualChannelResponse, error)
|
|
}
|
|
|
|
// UnimplementedDataCoordServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedDataCoordServer struct {
|
|
}
|
|
|
|
func (*UnimplementedDataCoordServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetTimeTickChannel(ctx context.Context, req *internalpb.GetTimeTickChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetTimeTickChannel not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) Flush(ctx context.Context, req *FlushRequest) (*FlushResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Flush not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) AssignSegmentID(ctx context.Context, req *AssignSegmentIDRequest) (*AssignSegmentIDResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method AssignSegmentID not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetSegmentInfo(ctx context.Context, req *GetSegmentInfoRequest) (*GetSegmentInfoResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfo not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetSegmentStates(ctx context.Context, req *GetSegmentStatesRequest) (*GetSegmentStatesResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentStates not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetInsertBinlogPaths(ctx context.Context, req *GetInsertBinlogPathsRequest) (*GetInsertBinlogPathsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetInsertBinlogPaths not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetCollectionStatistics(ctx context.Context, req *GetCollectionStatisticsRequest) (*GetCollectionStatisticsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetCollectionStatistics not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetPartitionStatistics(ctx context.Context, req *GetPartitionStatisticsRequest) (*GetPartitionStatisticsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetPartitionStatistics not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetSegmentInfoChannel(ctx context.Context, req *GetSegmentInfoChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetSegmentInfoChannel not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) SaveBinlogPaths(ctx context.Context, req *SaveBinlogPathsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method SaveBinlogPaths not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetRecoveryInfo(ctx context.Context, req *GetRecoveryInfoRequest) (*GetRecoveryInfoResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetRecoveryInfo not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetFlushedSegments(ctx context.Context, req *GetFlushedSegmentsRequest) (*GetFlushedSegmentsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetFlushedSegments not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) CompleteCompaction(ctx context.Context, req *CompactionResult) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method CompleteCompaction not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) ManualCompaction(ctx context.Context, req *milvuspb.ManualCompactionRequest) (*milvuspb.ManualCompactionResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method ManualCompaction not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetCompactionState(ctx context.Context, req *milvuspb.GetCompactionStateRequest) (*milvuspb.GetCompactionStateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetCompactionState not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetCompactionStateWithPlans(ctx context.Context, req *milvuspb.GetCompactionPlansRequest) (*milvuspb.GetCompactionPlansResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetCompactionStateWithPlans not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) WatchChannels(ctx context.Context, req *WatchChannelsRequest) (*WatchChannelsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method WatchChannels not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) GetFlushState(ctx context.Context, req *milvuspb.GetFlushStateRequest) (*milvuspb.GetFlushStateResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetFlushState not implemented")
|
|
}
|
|
func (*UnimplementedDataCoordServer) DropVirtualChannel(ctx context.Context, req *DropVirtualChannelRequest) (*DropVirtualChannelResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method DropVirtualChannel not implemented")
|
|
}
|
|
|
|
func RegisterDataCoordServer(s *grpc.Server, srv DataCoordServer) {
|
|
s.RegisterService(&_DataCoord_serviceDesc, srv)
|
|
}
|
|
|
|
func _DataCoord_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetComponentStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetComponentStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetComponentStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetTimeTickChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetTimeTickChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetTimeTickChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetTimeTickChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetTimeTickChannel(ctx, req.(*internalpb.GetTimeTickChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetStatisticsChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetStatisticsChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetStatisticsChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_Flush_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(FlushRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).Flush(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/Flush",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).Flush(ctx, req.(*FlushRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_AssignSegmentID_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(AssignSegmentIDRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).AssignSegmentID(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/AssignSegmentID",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).AssignSegmentID(ctx, req.(*AssignSegmentIDRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetSegmentInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetSegmentInfoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetSegmentInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetSegmentInfo",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetSegmentInfo(ctx, req.(*GetSegmentInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetSegmentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetSegmentStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetSegmentStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetSegmentStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetSegmentStates(ctx, req.(*GetSegmentStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetInsertBinlogPaths_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetInsertBinlogPathsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetInsertBinlogPaths(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetInsertBinlogPaths",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetInsertBinlogPaths(ctx, req.(*GetInsertBinlogPathsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetCollectionStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetCollectionStatisticsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetCollectionStatistics(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetCollectionStatistics",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetCollectionStatistics(ctx, req.(*GetCollectionStatisticsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetPartitionStatistics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetPartitionStatisticsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetPartitionStatistics(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetPartitionStatistics",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetPartitionStatistics(ctx, req.(*GetPartitionStatisticsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetSegmentInfoChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetSegmentInfoChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetSegmentInfoChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetSegmentInfoChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetSegmentInfoChannel(ctx, req.(*GetSegmentInfoChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_SaveBinlogPaths_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(SaveBinlogPathsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).SaveBinlogPaths(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/SaveBinlogPaths",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).SaveBinlogPaths(ctx, req.(*SaveBinlogPathsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetRecoveryInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetRecoveryInfoRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetRecoveryInfo(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetRecoveryInfo",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetRecoveryInfo(ctx, req.(*GetRecoveryInfoRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetFlushedSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(GetFlushedSegmentsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetFlushedSegments(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetFlushedSegments",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetFlushedSegments(ctx, req.(*GetFlushedSegmentsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.GetMetricsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetMetrics(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetMetrics",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_CompleteCompaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CompactionResult)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).CompleteCompaction(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/CompleteCompaction",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).CompleteCompaction(ctx, req.(*CompactionResult))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_ManualCompaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.ManualCompactionRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).ManualCompaction(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/ManualCompaction",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).ManualCompaction(ctx, req.(*milvuspb.ManualCompactionRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetCompactionState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.GetCompactionStateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetCompactionState(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetCompactionState",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetCompactionState(ctx, req.(*milvuspb.GetCompactionStateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetCompactionStateWithPlans_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.GetCompactionPlansRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetCompactionStateWithPlans(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetCompactionStateWithPlans",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetCompactionStateWithPlans(ctx, req.(*milvuspb.GetCompactionPlansRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_WatchChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(WatchChannelsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).WatchChannels(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/WatchChannels",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).WatchChannels(ctx, req.(*WatchChannelsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_GetFlushState_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.GetFlushStateRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).GetFlushState(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/GetFlushState",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).GetFlushState(ctx, req.(*milvuspb.GetFlushStateRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataCoord_DropVirtualChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(DropVirtualChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataCoordServer).DropVirtualChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataCoord/DropVirtualChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataCoordServer).DropVirtualChannel(ctx, req.(*DropVirtualChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _DataCoord_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "milvus.proto.data.DataCoord",
|
|
HandlerType: (*DataCoordServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetComponentStates",
|
|
Handler: _DataCoord_GetComponentStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetTimeTickChannel",
|
|
Handler: _DataCoord_GetTimeTickChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetStatisticsChannel",
|
|
Handler: _DataCoord_GetStatisticsChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "Flush",
|
|
Handler: _DataCoord_Flush_Handler,
|
|
},
|
|
{
|
|
MethodName: "AssignSegmentID",
|
|
Handler: _DataCoord_AssignSegmentID_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetSegmentInfo",
|
|
Handler: _DataCoord_GetSegmentInfo_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetSegmentStates",
|
|
Handler: _DataCoord_GetSegmentStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetInsertBinlogPaths",
|
|
Handler: _DataCoord_GetInsertBinlogPaths_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetCollectionStatistics",
|
|
Handler: _DataCoord_GetCollectionStatistics_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetPartitionStatistics",
|
|
Handler: _DataCoord_GetPartitionStatistics_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetSegmentInfoChannel",
|
|
Handler: _DataCoord_GetSegmentInfoChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "SaveBinlogPaths",
|
|
Handler: _DataCoord_SaveBinlogPaths_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetRecoveryInfo",
|
|
Handler: _DataCoord_GetRecoveryInfo_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetFlushedSegments",
|
|
Handler: _DataCoord_GetFlushedSegments_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMetrics",
|
|
Handler: _DataCoord_GetMetrics_Handler,
|
|
},
|
|
{
|
|
MethodName: "CompleteCompaction",
|
|
Handler: _DataCoord_CompleteCompaction_Handler,
|
|
},
|
|
{
|
|
MethodName: "ManualCompaction",
|
|
Handler: _DataCoord_ManualCompaction_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetCompactionState",
|
|
Handler: _DataCoord_GetCompactionState_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetCompactionStateWithPlans",
|
|
Handler: _DataCoord_GetCompactionStateWithPlans_Handler,
|
|
},
|
|
{
|
|
MethodName: "WatchChannels",
|
|
Handler: _DataCoord_WatchChannels_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetFlushState",
|
|
Handler: _DataCoord_GetFlushState_Handler,
|
|
},
|
|
{
|
|
MethodName: "DropVirtualChannel",
|
|
Handler: _DataCoord_DropVirtualChannel_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "data_coord.proto",
|
|
}
|
|
|
|
// DataNodeClient is the client API for DataNode service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
|
type DataNodeClient interface {
|
|
GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error)
|
|
GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
|
WatchDmChannels(ctx context.Context, in *WatchDmChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
FlushSegments(ctx context.Context, in *FlushSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
|
|
Compaction(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error)
|
|
}
|
|
|
|
type dataNodeClient struct {
|
|
cc *grpc.ClientConn
|
|
}
|
|
|
|
func NewDataNodeClient(cc *grpc.ClientConn) DataNodeClient {
|
|
return &dataNodeClient{cc}
|
|
}
|
|
|
|
func (c *dataNodeClient) GetComponentStates(ctx context.Context, in *internalpb.GetComponentStatesRequest, opts ...grpc.CallOption) (*internalpb.ComponentStates, error) {
|
|
out := new(internalpb.ComponentStates)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/GetComponentStates", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataNodeClient) GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
|
out := new(milvuspb.StringResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/GetStatisticsChannel", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataNodeClient) WatchDmChannels(ctx context.Context, in *WatchDmChannelsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/WatchDmChannels", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataNodeClient) FlushSegments(ctx context.Context, in *FlushSegmentsRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/FlushSegments", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataNodeClient) GetMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
|
|
out := new(milvuspb.GetMetricsResponse)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/GetMetrics", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
func (c *dataNodeClient) Compaction(ctx context.Context, in *CompactionPlan, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
|
out := new(commonpb.Status)
|
|
err := c.cc.Invoke(ctx, "/milvus.proto.data.DataNode/Compaction", in, out, opts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// DataNodeServer is the server API for DataNode service.
|
|
type DataNodeServer interface {
|
|
GetComponentStates(context.Context, *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error)
|
|
GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
|
|
WatchDmChannels(context.Context, *WatchDmChannelsRequest) (*commonpb.Status, error)
|
|
FlushSegments(context.Context, *FlushSegmentsRequest) (*commonpb.Status, error)
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
GetMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
|
|
Compaction(context.Context, *CompactionPlan) (*commonpb.Status, error)
|
|
}
|
|
|
|
// UnimplementedDataNodeServer can be embedded to have forward compatible implementations.
|
|
type UnimplementedDataNodeServer struct {
|
|
}
|
|
|
|
func (*UnimplementedDataNodeServer) GetComponentStates(ctx context.Context, req *internalpb.GetComponentStatesRequest) (*internalpb.ComponentStates, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
|
|
}
|
|
func (*UnimplementedDataNodeServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
|
|
}
|
|
func (*UnimplementedDataNodeServer) WatchDmChannels(ctx context.Context, req *WatchDmChannelsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method WatchDmChannels not implemented")
|
|
}
|
|
func (*UnimplementedDataNodeServer) FlushSegments(ctx context.Context, req *FlushSegmentsRequest) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method FlushSegments not implemented")
|
|
}
|
|
func (*UnimplementedDataNodeServer) GetMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method GetMetrics not implemented")
|
|
}
|
|
func (*UnimplementedDataNodeServer) Compaction(ctx context.Context, req *CompactionPlan) (*commonpb.Status, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Compaction not implemented")
|
|
}
|
|
|
|
func RegisterDataNodeServer(s *grpc.Server, srv DataNodeServer) {
|
|
s.RegisterService(&_DataNode_serviceDesc, srv)
|
|
}
|
|
|
|
func _DataNode_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetComponentStatesRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).GetComponentStates(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/GetComponentStates",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).GetComponentStates(ctx, req.(*internalpb.GetComponentStatesRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataNode_GetStatisticsChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(internalpb.GetStatisticsChannelRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).GetStatisticsChannel(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/GetStatisticsChannel",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataNode_WatchDmChannels_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(WatchDmChannelsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).WatchDmChannels(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/WatchDmChannels",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).WatchDmChannels(ctx, req.(*WatchDmChannelsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataNode_FlushSegments_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(FlushSegmentsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).FlushSegments(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/FlushSegments",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).FlushSegments(ctx, req.(*FlushSegmentsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataNode_GetMetrics_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(milvuspb.GetMetricsRequest)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).GetMetrics(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/GetMetrics",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).GetMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
func _DataNode_Compaction_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(CompactionPlan)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(DataNodeServer).Compaction(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: "/milvus.proto.data.DataNode/Compaction",
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(DataNodeServer).Compaction(ctx, req.(*CompactionPlan))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
var _DataNode_serviceDesc = grpc.ServiceDesc{
|
|
ServiceName: "milvus.proto.data.DataNode",
|
|
HandlerType: (*DataNodeServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "GetComponentStates",
|
|
Handler: _DataNode_GetComponentStates_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetStatisticsChannel",
|
|
Handler: _DataNode_GetStatisticsChannel_Handler,
|
|
},
|
|
{
|
|
MethodName: "WatchDmChannels",
|
|
Handler: _DataNode_WatchDmChannels_Handler,
|
|
},
|
|
{
|
|
MethodName: "FlushSegments",
|
|
Handler: _DataNode_FlushSegments_Handler,
|
|
},
|
|
{
|
|
MethodName: "GetMetrics",
|
|
Handler: _DataNode_GetMetrics_Handler,
|
|
},
|
|
{
|
|
MethodName: "Compaction",
|
|
Handler: _DataNode_Compaction_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "data_coord.proto",
|
|
}
|