mirror of https://github.com/milvus-io/milvus.git
enhance: ignore proto generated files (#28537)
ignore proto generated files issue: https://github.com/milvus-io/milvus/issues/28566 --------- Signed-off-by: sunby <sunbingyi1992@gmail.com>pull/28517/head
parent
9fd81025ea
commit
e8c5e75786
|
@ -101,3 +101,8 @@ internal/kv/rocksdb/cwrapper/
|
|||
|
||||
# local file data
|
||||
**/data/*
|
||||
|
||||
internal/proto/**/*.pb.go
|
||||
internal/core/src/pb/*.pb.h
|
||||
internal/core/src/pb/*.pb.cc
|
||||
**/legacypb/*.pb.go
|
||||
|
|
|
@ -1,280 +0,0 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: legacy.proto
|
||||
|
||||
package legacypb
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
||||
schemapb "github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
|
||||
type BuildIndexRequest struct {
|
||||
IndexBuildID int64 `protobuf:"varint,1,opt,name=indexBuildID,proto3" json:"indexBuildID,omitempty"`
|
||||
IndexName string `protobuf:"bytes,2,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
|
||||
IndexID int64 `protobuf:"varint,3,opt,name=indexID,proto3" json:"indexID,omitempty"`
|
||||
DataPaths []string `protobuf:"bytes,5,rep,name=data_paths,json=dataPaths,proto3" json:"data_paths,omitempty"`
|
||||
TypeParams []*commonpb.KeyValuePair `protobuf:"bytes,6,rep,name=type_params,json=typeParams,proto3" json:"type_params,omitempty"`
|
||||
IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
|
||||
NumRows int64 `protobuf:"varint,8,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
|
||||
FieldSchema *schemapb.FieldSchema `protobuf:"bytes,9,opt,name=field_schema,json=fieldSchema,proto3" json:"field_schema,omitempty"`
|
||||
SegmentID int64 `protobuf:"varint,10,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) Reset() { *m = BuildIndexRequest{} }
|
||||
func (m *BuildIndexRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*BuildIndexRequest) ProtoMessage() {}
|
||||
func (*BuildIndexRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_4b5c555c498591f0, []int{0}
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BuildIndexRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BuildIndexRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BuildIndexRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *BuildIndexRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BuildIndexRequest.Merge(m, src)
|
||||
}
|
||||
func (m *BuildIndexRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_BuildIndexRequest.Size(m)
|
||||
}
|
||||
func (m *BuildIndexRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BuildIndexRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BuildIndexRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *BuildIndexRequest) GetIndexBuildID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexBuildID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetIndexName() string {
|
||||
if m != nil {
|
||||
return m.IndexName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetIndexID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetDataPaths() []string {
|
||||
if m != nil {
|
||||
return m.DataPaths
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetTypeParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.TypeParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetIndexParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.IndexParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetNumRows() int64 {
|
||||
if m != nil {
|
||||
return m.NumRows
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetFieldSchema() *schemapb.FieldSchema {
|
||||
if m != nil {
|
||||
return m.FieldSchema
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *BuildIndexRequest) GetSegmentID() int64 {
|
||||
if m != nil {
|
||||
return m.SegmentID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type IndexMeta struct {
|
||||
IndexBuildID int64 `protobuf:"varint,1,opt,name=indexBuildID,proto3" json:"indexBuildID,omitempty"`
|
||||
State commonpb.IndexState `protobuf:"varint,2,opt,name=state,proto3,enum=milvus.proto.common.IndexState" json:"state,omitempty"`
|
||||
FailReason string `protobuf:"bytes,3,opt,name=fail_reason,json=failReason,proto3" json:"fail_reason,omitempty"`
|
||||
Req *BuildIndexRequest `protobuf:"bytes,4,opt,name=req,proto3" json:"req,omitempty"`
|
||||
IndexFilePaths []string `protobuf:"bytes,5,rep,name=index_file_paths,json=indexFilePaths,proto3" json:"index_file_paths,omitempty"`
|
||||
MarkDeleted bool `protobuf:"varint,6,opt,name=mark_deleted,json=markDeleted,proto3" json:"mark_deleted,omitempty"`
|
||||
NodeID int64 `protobuf:"varint,7,opt,name=nodeID,proto3" json:"nodeID,omitempty"`
|
||||
IndexVersion int64 `protobuf:"varint,8,opt,name=index_version,json=indexVersion,proto3" json:"index_version,omitempty"`
|
||||
Recycled bool `protobuf:"varint,9,opt,name=recycled,proto3" json:"recycled,omitempty"`
|
||||
SerializeSize uint64 `protobuf:"varint,10,opt,name=serialize_size,json=serializeSize,proto3" json:"serialize_size,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IndexMeta) Reset() { *m = IndexMeta{} }
|
||||
func (m *IndexMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexMeta) ProtoMessage() {}
|
||||
func (*IndexMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_4b5c555c498591f0, []int{1}
|
||||
}
|
||||
|
||||
func (m *IndexMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *IndexMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_IndexMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *IndexMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_IndexMeta.Merge(m, src)
|
||||
}
|
||||
func (m *IndexMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_IndexMeta.Size(m)
|
||||
}
|
||||
func (m *IndexMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_IndexMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_IndexMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *IndexMeta) GetIndexBuildID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexBuildID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetState() commonpb.IndexState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return commonpb.IndexState_IndexStateNone
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetFailReason() string {
|
||||
if m != nil {
|
||||
return m.FailReason
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetReq() *BuildIndexRequest {
|
||||
if m != nil {
|
||||
return m.Req
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetIndexFilePaths() []string {
|
||||
if m != nil {
|
||||
return m.IndexFilePaths
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetMarkDeleted() bool {
|
||||
if m != nil {
|
||||
return m.MarkDeleted
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetNodeID() int64 {
|
||||
if m != nil {
|
||||
return m.NodeID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetIndexVersion() int64 {
|
||||
if m != nil {
|
||||
return m.IndexVersion
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetRecycled() bool {
|
||||
if m != nil {
|
||||
return m.Recycled
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *IndexMeta) GetSerializeSize() uint64 {
|
||||
if m != nil {
|
||||
return m.SerializeSize
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*BuildIndexRequest)(nil), "milvus.proto.legacy.BuildIndexRequest")
|
||||
proto.RegisterType((*IndexMeta)(nil), "milvus.proto.legacy.IndexMeta")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("legacy.proto", fileDescriptor_4b5c555c498591f0) }
|
||||
|
||||
var fileDescriptor_4b5c555c498591f0 = []byte{
|
||||
// 511 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x92, 0xc1, 0x6b, 0xdb, 0x30,
|
||||
0x14, 0xc6, 0xc9, 0xdc, 0xa6, 0xf1, 0xb3, 0x5b, 0x36, 0x0d, 0x86, 0x56, 0x36, 0xea, 0x66, 0x6c,
|
||||
0xf8, 0xb2, 0x04, 0x52, 0x0a, 0x3b, 0x67, 0xa6, 0x10, 0xc6, 0x46, 0x50, 0xa0, 0x87, 0x5d, 0x8c,
|
||||
0x12, 0xbf, 0x24, 0x62, 0xb2, 0x9d, 0x4a, 0x72, 0xbb, 0xe4, 0x8f, 0xd8, 0x75, 0xff, 0xee, 0x90,
|
||||
0xe4, 0xb6, 0x84, 0xf5, 0xd0, 0x9b, 0xbf, 0x9f, 0xf5, 0x3d, 0xf9, 0x7d, 0x9f, 0x21, 0x96, 0xb8,
|
||||
0xe2, 0x8b, 0xed, 0x60, 0xa3, 0x6a, 0x53, 0x93, 0xd7, 0xa5, 0x90, 0xb7, 0x8d, 0xf6, 0x6a, 0xe0,
|
||||
0x5f, 0x9d, 0xc6, 0x8b, 0xba, 0x2c, 0xeb, 0xca, 0xc3, 0xd3, 0x58, 0x2f, 0xd6, 0x58, 0x72, 0xaf,
|
||||
0xfa, 0x7f, 0x03, 0x78, 0x35, 0x6e, 0x84, 0x2c, 0x26, 0x55, 0x81, 0xbf, 0x19, 0xde, 0x34, 0xa8,
|
||||
0x0d, 0xe9, 0x43, 0x2c, 0xac, 0xf6, 0x6f, 0x32, 0xda, 0x49, 0x3a, 0x69, 0xc0, 0xf6, 0x18, 0x79,
|
||||
0x0f, 0xe0, 0x74, 0x5e, 0xf1, 0x12, 0xe9, 0x8b, 0xa4, 0x93, 0x86, 0x2c, 0x74, 0xe4, 0x07, 0x2f,
|
||||
0x91, 0x50, 0x38, 0x72, 0x62, 0x92, 0xd1, 0xc0, 0xb9, 0xef, 0xa5, 0x35, 0x16, 0xdc, 0xf0, 0x7c,
|
||||
0xc3, 0xcd, 0x5a, 0xd3, 0xc3, 0x24, 0xb0, 0x46, 0x4b, 0xa6, 0x16, 0x90, 0x31, 0x44, 0x66, 0xbb,
|
||||
0xc1, 0x7c, 0xc3, 0x15, 0x2f, 0x35, 0xed, 0x26, 0x41, 0x1a, 0x8d, 0xce, 0x07, 0x7b, 0x8b, 0xb5,
|
||||
0x0b, 0x7d, 0xc3, 0xed, 0x35, 0x97, 0x0d, 0x4e, 0xb9, 0x50, 0x0c, 0xac, 0x6b, 0xea, 0x4c, 0x24,
|
||||
0x6b, 0xbf, 0xff, 0x7e, 0xc8, 0xd1, 0x73, 0x87, 0x44, 0xce, 0xd6, 0x4e, 0x79, 0x0b, 0xbd, 0xaa,
|
||||
0x29, 0x73, 0x55, 0xdf, 0x69, 0xda, 0xf3, 0x3b, 0x54, 0x4d, 0xc9, 0xea, 0x3b, 0x4d, 0xbe, 0x42,
|
||||
0xbc, 0x14, 0x28, 0x8b, 0xdc, 0x87, 0x49, 0xc3, 0xa4, 0x93, 0x46, 0xa3, 0x64, 0xff, 0x82, 0x36,
|
||||
0xe8, 0x2b, 0x7b, 0x70, 0xe6, 0x9e, 0x59, 0xb4, 0x7c, 0x14, 0xe4, 0x1d, 0x84, 0x1a, 0x57, 0x25,
|
||||
0x56, 0x66, 0x92, 0x51, 0x70, 0x17, 0x3c, 0x82, 0xfe, 0x9f, 0x00, 0x42, 0x57, 0xca, 0x77, 0x34,
|
||||
0xfc, 0x59, 0x8d, 0x5c, 0xc2, 0xa1, 0x36, 0xdc, 0xf8, 0x32, 0x4e, 0x46, 0x67, 0x4f, 0xae, 0xeb,
|
||||
0x46, 0xce, 0xec, 0x31, 0xe6, 0x4f, 0x93, 0x33, 0x88, 0x96, 0x5c, 0xc8, 0x5c, 0x21, 0xd7, 0x75,
|
||||
0xe5, 0xda, 0x0a, 0x19, 0x58, 0xc4, 0x1c, 0x21, 0x5f, 0x20, 0x50, 0x78, 0x43, 0x0f, 0xdc, 0x8e,
|
||||
0x9f, 0x06, 0x4f, 0xfc, 0x62, 0x83, 0xff, 0x7e, 0x21, 0x66, 0x2d, 0x24, 0x85, 0x97, 0xbe, 0x87,
|
||||
0xa5, 0x90, 0xb8, 0x57, 0xf8, 0x89, 0xe3, 0x57, 0x42, 0xa2, 0x6f, 0xfd, 0x1c, 0xe2, 0x92, 0xab,
|
||||
0x5f, 0x79, 0x81, 0x12, 0x0d, 0x16, 0xb4, 0x9b, 0x74, 0xd2, 0x1e, 0x8b, 0x2c, 0xcb, 0x3c, 0x22,
|
||||
0x6f, 0xa0, 0x5b, 0xd5, 0x05, 0x4e, 0x32, 0x7a, 0xe4, 0x96, 0x6f, 0x15, 0xf9, 0x00, 0xc7, 0xfe,
|
||||
0x92, 0x5b, 0x54, 0x5a, 0xd4, 0x55, 0xdb, 0x95, 0xcf, 0xe6, 0xda, 0x33, 0x72, 0x0a, 0x3d, 0x85,
|
||||
0x8b, 0xed, 0x42, 0x62, 0xe1, 0xca, 0xea, 0xb1, 0x07, 0x4d, 0x3e, 0xc2, 0x89, 0x46, 0x25, 0xb8,
|
||||
0x14, 0x3b, 0xcc, 0xb5, 0xd8, 0xa1, 0x2b, 0xe3, 0x80, 0x1d, 0x3f, 0xd0, 0x99, 0xd8, 0xe1, 0xf8,
|
||||
0xf2, 0xe7, 0xc5, 0x4a, 0x98, 0x75, 0x33, 0xb7, 0x51, 0x0e, 0x7d, 0x0a, 0x9f, 0x45, 0xdd, 0x3e,
|
||||
0x0d, 0x45, 0x65, 0x50, 0x55, 0x5c, 0x0e, 0x5d, 0x30, 0x43, 0x1f, 0xcc, 0x66, 0x3e, 0xef, 0x3a,
|
||||
0x7d, 0xf1, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x46, 0x37, 0x11, 0xcb, 0xa9, 0x03, 0x00, 0x00,
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,64 +0,0 @@
|
|||
#!python
|
||||
import random
|
||||
import copy
|
||||
|
||||
def show_dsl(query_entities):
|
||||
if not isinstance(query_entities, (dict,)):
|
||||
raise ParamError("Invalid query format. 'query_entities' must be a dict")
|
||||
|
||||
duplicated_entities = copy.deepcopy(query_entities)
|
||||
vector_placeholders = dict()
|
||||
|
||||
def extract_vectors_param(param, placeholders):
|
||||
if not isinstance(param, (dict, list)):
|
||||
return
|
||||
|
||||
if isinstance(param, dict):
|
||||
if "vector" in param:
|
||||
# TODO: Here may not replace ph
|
||||
ph = "$" + str(len(placeholders))
|
||||
|
||||
for pk, pv in param["vector"].items():
|
||||
if "query" not in pv:
|
||||
raise ParamError("param vector must contain 'query'")
|
||||
placeholders[ph] = pv["query"]
|
||||
param["vector"][pk]["query"] = ph
|
||||
|
||||
return
|
||||
else:
|
||||
for _, v in param.items():
|
||||
extract_vectors_param(v, placeholders)
|
||||
|
||||
if isinstance(param, list):
|
||||
for item in param:
|
||||
extract_vectors_param(item, placeholders)
|
||||
|
||||
extract_vectors_param(duplicated_entities, vector_placeholders)
|
||||
print(duplicated_entities)
|
||||
|
||||
for tag, vectors in vector_placeholders.items():
|
||||
print("tag: ", tag)
|
||||
|
||||
if __name__ == "__main__":
|
||||
num = 5
|
||||
dimension = 4
|
||||
vectors = [[random.random() for _ in range(4)] for _ in range(num)]
|
||||
dsl = {
|
||||
"bool": {
|
||||
"must":[
|
||||
{
|
||||
"term": {"A": [1, 2, 5]}
|
||||
},
|
||||
{
|
||||
"range": {"B": {"GT": 1, "LT": 100}}
|
||||
},
|
||||
{
|
||||
"vector": {
|
||||
"Vec": {"topk": 10, "query": vectors[:1], "metric_type": "L2", "params": {"nprobe": 10}}
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
show_dsl(dsl)
|
||||
|
File diff suppressed because it is too large
Load Diff
|
@ -1,978 +0,0 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: etcd_meta.proto
|
||||
|
||||
package etcdpb
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
||||
schemapb "github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
|
||||
type DatabaseState int32
|
||||
|
||||
const (
|
||||
DatabaseState_DatabaseUnknown DatabaseState = 0
|
||||
DatabaseState_DatabaseCreated DatabaseState = 1
|
||||
DatabaseState_DatabaseCreating DatabaseState = 2
|
||||
DatabaseState_DatabaseDropping DatabaseState = 3
|
||||
DatabaseState_DatabaseDropped DatabaseState = 4
|
||||
)
|
||||
|
||||
var DatabaseState_name = map[int32]string{
|
||||
0: "DatabaseUnknown",
|
||||
1: "DatabaseCreated",
|
||||
2: "DatabaseCreating",
|
||||
3: "DatabaseDropping",
|
||||
4: "DatabaseDropped",
|
||||
}
|
||||
|
||||
var DatabaseState_value = map[string]int32{
|
||||
"DatabaseUnknown": 0,
|
||||
"DatabaseCreated": 1,
|
||||
"DatabaseCreating": 2,
|
||||
"DatabaseDropping": 3,
|
||||
"DatabaseDropped": 4,
|
||||
}
|
||||
|
||||
func (x DatabaseState) String() string {
|
||||
return proto.EnumName(DatabaseState_name, int32(x))
|
||||
}
|
||||
|
||||
func (DatabaseState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{0}
|
||||
}
|
||||
|
||||
type CollectionState int32
|
||||
|
||||
const (
|
||||
CollectionState_CollectionCreated CollectionState = 0
|
||||
CollectionState_CollectionCreating CollectionState = 1
|
||||
CollectionState_CollectionDropping CollectionState = 2
|
||||
CollectionState_CollectionDropped CollectionState = 3
|
||||
)
|
||||
|
||||
var CollectionState_name = map[int32]string{
|
||||
0: "CollectionCreated",
|
||||
1: "CollectionCreating",
|
||||
2: "CollectionDropping",
|
||||
3: "CollectionDropped",
|
||||
}
|
||||
|
||||
var CollectionState_value = map[string]int32{
|
||||
"CollectionCreated": 0,
|
||||
"CollectionCreating": 1,
|
||||
"CollectionDropping": 2,
|
||||
"CollectionDropped": 3,
|
||||
}
|
||||
|
||||
func (x CollectionState) String() string {
|
||||
return proto.EnumName(CollectionState_name, int32(x))
|
||||
}
|
||||
|
||||
func (CollectionState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{1}
|
||||
}
|
||||
|
||||
type PartitionState int32
|
||||
|
||||
const (
|
||||
PartitionState_PartitionCreated PartitionState = 0
|
||||
PartitionState_PartitionCreating PartitionState = 1
|
||||
PartitionState_PartitionDropping PartitionState = 2
|
||||
PartitionState_PartitionDropped PartitionState = 3
|
||||
)
|
||||
|
||||
var PartitionState_name = map[int32]string{
|
||||
0: "PartitionCreated",
|
||||
1: "PartitionCreating",
|
||||
2: "PartitionDropping",
|
||||
3: "PartitionDropped",
|
||||
}
|
||||
|
||||
var PartitionState_value = map[string]int32{
|
||||
"PartitionCreated": 0,
|
||||
"PartitionCreating": 1,
|
||||
"PartitionDropping": 2,
|
||||
"PartitionDropped": 3,
|
||||
}
|
||||
|
||||
func (x PartitionState) String() string {
|
||||
return proto.EnumName(PartitionState_name, int32(x))
|
||||
}
|
||||
|
||||
func (PartitionState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{2}
|
||||
}
|
||||
|
||||
type AliasState int32
|
||||
|
||||
const (
|
||||
AliasState_AliasCreated AliasState = 0
|
||||
AliasState_AliasCreating AliasState = 1
|
||||
AliasState_AliasDropping AliasState = 2
|
||||
AliasState_AliasDropped AliasState = 3
|
||||
)
|
||||
|
||||
var AliasState_name = map[int32]string{
|
||||
0: "AliasCreated",
|
||||
1: "AliasCreating",
|
||||
2: "AliasDropping",
|
||||
3: "AliasDropped",
|
||||
}
|
||||
|
||||
var AliasState_value = map[string]int32{
|
||||
"AliasCreated": 0,
|
||||
"AliasCreating": 1,
|
||||
"AliasDropping": 2,
|
||||
"AliasDropped": 3,
|
||||
}
|
||||
|
||||
func (x AliasState) String() string {
|
||||
return proto.EnumName(AliasState_name, int32(x))
|
||||
}
|
||||
|
||||
func (AliasState) EnumDescriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{3}
|
||||
}
|
||||
|
||||
type IndexInfo struct {
|
||||
IndexName string `protobuf:"bytes,1,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
|
||||
IndexID int64 `protobuf:"varint,2,opt,name=indexID,proto3" json:"indexID,omitempty"`
|
||||
IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,3,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
|
||||
Deleted bool `protobuf:"varint,4,opt,name=deleted,proto3" json:"deleted,omitempty"`
|
||||
CreateTime uint64 `protobuf:"varint,5,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IndexInfo) Reset() { *m = IndexInfo{} }
|
||||
func (m *IndexInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexInfo) ProtoMessage() {}
|
||||
func (*IndexInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{0}
|
||||
}
|
||||
|
||||
func (m *IndexInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *IndexInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_IndexInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *IndexInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_IndexInfo.Merge(m, src)
|
||||
}
|
||||
func (m *IndexInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_IndexInfo.Size(m)
|
||||
}
|
||||
func (m *IndexInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_IndexInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_IndexInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *IndexInfo) GetIndexName() string {
|
||||
if m != nil {
|
||||
return m.IndexName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *IndexInfo) GetIndexID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *IndexInfo) GetIndexParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.IndexParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *IndexInfo) GetDeleted() bool {
|
||||
if m != nil {
|
||||
return m.Deleted
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *IndexInfo) GetCreateTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type FieldIndexInfo struct {
|
||||
FiledID int64 `protobuf:"varint,1,opt,name=filedID,proto3" json:"filedID,omitempty"`
|
||||
IndexID int64 `protobuf:"varint,2,opt,name=indexID,proto3" json:"indexID,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *FieldIndexInfo) Reset() { *m = FieldIndexInfo{} }
|
||||
func (m *FieldIndexInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldIndexInfo) ProtoMessage() {}
|
||||
func (*FieldIndexInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{1}
|
||||
}
|
||||
|
||||
func (m *FieldIndexInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldIndexInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *FieldIndexInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_FieldIndexInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *FieldIndexInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_FieldIndexInfo.Merge(m, src)
|
||||
}
|
||||
func (m *FieldIndexInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_FieldIndexInfo.Size(m)
|
||||
}
|
||||
func (m *FieldIndexInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_FieldIndexInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_FieldIndexInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *FieldIndexInfo) GetFiledID() int64 {
|
||||
if m != nil {
|
||||
return m.FiledID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *FieldIndexInfo) GetIndexID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
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"`
|
||||
CreateTime uint64 `protobuf:"varint,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
// deprecate
|
||||
PartitionIDs []int64 `protobuf:"varint,4,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
|
||||
// deprecate
|
||||
PartitionNames []string `protobuf:"bytes,5,rep,name=partitionNames,proto3" json:"partitionNames,omitempty"`
|
||||
// deprecate
|
||||
FieldIndexes []*FieldIndexInfo `protobuf:"bytes,6,rep,name=field_indexes,json=fieldIndexes,proto3" json:"field_indexes,omitempty"`
|
||||
VirtualChannelNames []string `protobuf:"bytes,7,rep,name=virtual_channel_names,json=virtualChannelNames,proto3" json:"virtual_channel_names,omitempty"`
|
||||
PhysicalChannelNames []string `protobuf:"bytes,8,rep,name=physical_channel_names,json=physicalChannelNames,proto3" json:"physical_channel_names,omitempty"`
|
||||
// deprecate
|
||||
PartitionCreatedTimestamps []uint64 `protobuf:"varint,9,rep,packed,name=partition_created_timestamps,json=partitionCreatedTimestamps,proto3" json:"partition_created_timestamps,omitempty"`
|
||||
ShardsNum int32 `protobuf:"varint,10,opt,name=shards_num,json=shardsNum,proto3" json:"shards_num,omitempty"`
|
||||
StartPositions []*commonpb.KeyDataPair `protobuf:"bytes,11,rep,name=start_positions,json=startPositions,proto3" json:"start_positions,omitempty"`
|
||||
ConsistencyLevel commonpb.ConsistencyLevel `protobuf:"varint,12,opt,name=consistency_level,json=consistencyLevel,proto3,enum=milvus.proto.common.ConsistencyLevel" json:"consistency_level,omitempty"`
|
||||
State CollectionState `protobuf:"varint,13,opt,name=state,proto3,enum=milvus.proto.etcd.CollectionState" json:"state,omitempty"`
|
||||
Properties []*commonpb.KeyValuePair `protobuf:"bytes,14,rep,name=properties,proto3" json:"properties,omitempty"`
|
||||
DbId int64 `protobuf:"varint,15,opt,name=db_id,json=dbId,proto3" json:"db_id,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_975d306d62b73e88, []int{2}
|
||||
}
|
||||
|
||||
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) GetCreateTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetPartitionIDs() []int64 {
|
||||
if m != nil {
|
||||
return m.PartitionIDs
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetPartitionNames() []string {
|
||||
if m != nil {
|
||||
return m.PartitionNames
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetFieldIndexes() []*FieldIndexInfo {
|
||||
if m != nil {
|
||||
return m.FieldIndexes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetVirtualChannelNames() []string {
|
||||
if m != nil {
|
||||
return m.VirtualChannelNames
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetPhysicalChannelNames() []string {
|
||||
if m != nil {
|
||||
return m.PhysicalChannelNames
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetPartitionCreatedTimestamps() []uint64 {
|
||||
if m != nil {
|
||||
return m.PartitionCreatedTimestamps
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetShardsNum() int32 {
|
||||
if m != nil {
|
||||
return m.ShardsNum
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetStartPositions() []*commonpb.KeyDataPair {
|
||||
if m != nil {
|
||||
return m.StartPositions
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetConsistencyLevel() commonpb.ConsistencyLevel {
|
||||
if m != nil {
|
||||
return m.ConsistencyLevel
|
||||
}
|
||||
return commonpb.ConsistencyLevel_Strong
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetState() CollectionState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return CollectionState_CollectionCreated
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetProperties() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.Properties
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionInfo) GetDbId() int64 {
|
||||
if m != nil {
|
||||
return m.DbId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type PartitionInfo struct {
|
||||
PartitionID int64 `protobuf:"varint,1,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
||||
PartitionName string `protobuf:"bytes,2,opt,name=partitionName,proto3" json:"partitionName,omitempty"`
|
||||
PartitionCreatedTimestamp uint64 `protobuf:"varint,3,opt,name=partition_created_timestamp,json=partitionCreatedTimestamp,proto3" json:"partition_created_timestamp,omitempty"`
|
||||
CollectionId int64 `protobuf:"varint,4,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"`
|
||||
State PartitionState `protobuf:"varint,5,opt,name=state,proto3,enum=milvus.proto.etcd.PartitionState" json:"state,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) Reset() { *m = PartitionInfo{} }
|
||||
func (m *PartitionInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*PartitionInfo) ProtoMessage() {}
|
||||
func (*PartitionInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{3}
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_PartitionInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *PartitionInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_PartitionInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *PartitionInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_PartitionInfo.Merge(m, src)
|
||||
}
|
||||
func (m *PartitionInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_PartitionInfo.Size(m)
|
||||
}
|
||||
func (m *PartitionInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_PartitionInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_PartitionInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *PartitionInfo) GetPartitionID() int64 {
|
||||
if m != nil {
|
||||
return m.PartitionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) GetPartitionName() string {
|
||||
if m != nil {
|
||||
return m.PartitionName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) GetPartitionCreatedTimestamp() uint64 {
|
||||
if m != nil {
|
||||
return m.PartitionCreatedTimestamp
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) GetCollectionId() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *PartitionInfo) GetState() PartitionState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return PartitionState_PartitionCreated
|
||||
}
|
||||
|
||||
type AliasInfo struct {
|
||||
AliasName string `protobuf:"bytes,1,opt,name=alias_name,json=aliasName,proto3" json:"alias_name,omitempty"`
|
||||
CollectionId int64 `protobuf:"varint,2,opt,name=collection_id,json=collectionId,proto3" json:"collection_id,omitempty"`
|
||||
CreatedTime uint64 `protobuf:"varint,3,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
|
||||
State AliasState `protobuf:"varint,4,opt,name=state,proto3,enum=milvus.proto.etcd.AliasState" json:"state,omitempty"`
|
||||
DbId int64 `protobuf:"varint,5,opt,name=db_id,json=dbId,proto3" json:"db_id,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *AliasInfo) Reset() { *m = AliasInfo{} }
|
||||
func (m *AliasInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*AliasInfo) ProtoMessage() {}
|
||||
func (*AliasInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{4}
|
||||
}
|
||||
|
||||
func (m *AliasInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_AliasInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *AliasInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_AliasInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *AliasInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_AliasInfo.Merge(m, src)
|
||||
}
|
||||
func (m *AliasInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_AliasInfo.Size(m)
|
||||
}
|
||||
func (m *AliasInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_AliasInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_AliasInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *AliasInfo) GetAliasName() string {
|
||||
if m != nil {
|
||||
return m.AliasName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *AliasInfo) GetCollectionId() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *AliasInfo) GetCreatedTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreatedTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *AliasInfo) GetState() AliasState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return AliasState_AliasCreated
|
||||
}
|
||||
|
||||
func (m *AliasInfo) GetDbId() int64 {
|
||||
if m != nil {
|
||||
return m.DbId
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type DatabaseInfo struct {
|
||||
TenantId string `protobuf:"bytes,1,opt,name=tenant_id,json=tenantId,proto3" json:"tenant_id,omitempty"`
|
||||
Name string `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
|
||||
Id int64 `protobuf:"varint,3,opt,name=id,proto3" json:"id,omitempty"`
|
||||
State DatabaseState `protobuf:"varint,4,opt,name=state,proto3,enum=milvus.proto.etcd.DatabaseState" json:"state,omitempty"`
|
||||
CreatedTime uint64 `protobuf:"varint,5,opt,name=created_time,json=createdTime,proto3" json:"created_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) Reset() { *m = DatabaseInfo{} }
|
||||
func (m *DatabaseInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*DatabaseInfo) ProtoMessage() {}
|
||||
func (*DatabaseInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{5}
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_DatabaseInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *DatabaseInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_DatabaseInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *DatabaseInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_DatabaseInfo.Merge(m, src)
|
||||
}
|
||||
func (m *DatabaseInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_DatabaseInfo.Size(m)
|
||||
}
|
||||
func (m *DatabaseInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_DatabaseInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_DatabaseInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *DatabaseInfo) GetTenantId() string {
|
||||
if m != nil {
|
||||
return m.TenantId
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) GetName() string {
|
||||
if m != nil {
|
||||
return m.Name
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) GetId() int64 {
|
||||
if m != nil {
|
||||
return m.Id
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) GetState() DatabaseState {
|
||||
if m != nil {
|
||||
return m.State
|
||||
}
|
||||
return DatabaseState_DatabaseUnknown
|
||||
}
|
||||
|
||||
func (m *DatabaseInfo) GetCreatedTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreatedTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type SegmentIndexInfo struct {
|
||||
CollectionID int64 `protobuf:"varint,1,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
PartitionID int64 `protobuf:"varint,2,opt,name=partitionID,proto3" json:"partitionID,omitempty"`
|
||||
SegmentID int64 `protobuf:"varint,3,opt,name=segmentID,proto3" json:"segmentID,omitempty"`
|
||||
FieldID int64 `protobuf:"varint,4,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
||||
IndexID int64 `protobuf:"varint,5,opt,name=indexID,proto3" json:"indexID,omitempty"`
|
||||
BuildID int64 `protobuf:"varint,6,opt,name=buildID,proto3" json:"buildID,omitempty"`
|
||||
EnableIndex bool `protobuf:"varint,7,opt,name=enable_index,json=enableIndex,proto3" json:"enable_index,omitempty"`
|
||||
CreateTime uint64 `protobuf:"varint,8,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) Reset() { *m = SegmentIndexInfo{} }
|
||||
func (m *SegmentIndexInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*SegmentIndexInfo) ProtoMessage() {}
|
||||
func (*SegmentIndexInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{6}
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_SegmentIndexInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *SegmentIndexInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_SegmentIndexInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *SegmentIndexInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_SegmentIndexInfo.Merge(m, src)
|
||||
}
|
||||
func (m *SegmentIndexInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_SegmentIndexInfo.Size(m)
|
||||
}
|
||||
func (m *SegmentIndexInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_SegmentIndexInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_SegmentIndexInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *SegmentIndexInfo) GetCollectionID() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetPartitionID() int64 {
|
||||
if m != nil {
|
||||
return m.PartitionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetSegmentID() int64 {
|
||||
if m != nil {
|
||||
return m.SegmentID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetFieldID() int64 {
|
||||
if m != nil {
|
||||
return m.FieldID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetIndexID() int64 {
|
||||
if m != nil {
|
||||
return m.IndexID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetBuildID() int64 {
|
||||
if m != nil {
|
||||
return m.BuildID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetEnableIndex() bool {
|
||||
if m != nil {
|
||||
return m.EnableIndex
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *SegmentIndexInfo) GetCreateTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
// TODO move to proto files of interprocess communication
|
||||
type CollectionMeta 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"`
|
||||
CreateTime uint64 `protobuf:"varint,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"`
|
||||
SegmentIDs []int64 `protobuf:"varint,4,rep,packed,name=segmentIDs,proto3" json:"segmentIDs,omitempty"`
|
||||
PartitionTags []string `protobuf:"bytes,5,rep,name=partition_tags,json=partitionTags,proto3" json:"partition_tags,omitempty"`
|
||||
PartitionIDs []int64 `protobuf:"varint,6,rep,packed,name=partitionIDs,proto3" json:"partitionIDs,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) Reset() { *m = CollectionMeta{} }
|
||||
func (m *CollectionMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*CollectionMeta) ProtoMessage() {}
|
||||
func (*CollectionMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{7}
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CollectionMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CollectionMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CollectionMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CollectionMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CollectionMeta.Merge(m, src)
|
||||
}
|
||||
func (m *CollectionMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_CollectionMeta.Size(m)
|
||||
}
|
||||
func (m *CollectionMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CollectionMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CollectionMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *CollectionMeta) GetID() int64 {
|
||||
if m != nil {
|
||||
return m.ID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) GetSchema() *schemapb.CollectionSchema {
|
||||
if m != nil {
|
||||
return m.Schema
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) GetCreateTime() uint64 {
|
||||
if m != nil {
|
||||
return m.CreateTime
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) GetSegmentIDs() []int64 {
|
||||
if m != nil {
|
||||
return m.SegmentIDs
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) GetPartitionTags() []string {
|
||||
if m != nil {
|
||||
return m.PartitionTags
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionMeta) GetPartitionIDs() []int64 {
|
||||
if m != nil {
|
||||
return m.PartitionIDs
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type CredentialInfo struct {
|
||||
Username string `protobuf:"bytes,1,opt,name=username,proto3" json:"username,omitempty"`
|
||||
// encrypted by bcrypt (for higher security level)
|
||||
EncryptedPassword string `protobuf:"bytes,2,opt,name=encrypted_password,json=encryptedPassword,proto3" json:"encrypted_password,omitempty"`
|
||||
Tenant string `protobuf:"bytes,3,opt,name=tenant,proto3" json:"tenant,omitempty"`
|
||||
IsSuper bool `protobuf:"varint,4,opt,name=is_super,json=isSuper,proto3" json:"is_super,omitempty"`
|
||||
// encrypted by sha256 (for good performance in cache mapping)
|
||||
Sha256Password string `protobuf:"bytes,5,opt,name=sha256_password,json=sha256Password,proto3" json:"sha256_password,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) Reset() { *m = CredentialInfo{} }
|
||||
func (m *CredentialInfo) String() string { return proto.CompactTextString(m) }
|
||||
func (*CredentialInfo) ProtoMessage() {}
|
||||
func (*CredentialInfo) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_975d306d62b73e88, []int{8}
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CredentialInfo.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CredentialInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CredentialInfo.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CredentialInfo) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CredentialInfo.Merge(m, src)
|
||||
}
|
||||
func (m *CredentialInfo) XXX_Size() int {
|
||||
return xxx_messageInfo_CredentialInfo.Size(m)
|
||||
}
|
||||
func (m *CredentialInfo) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CredentialInfo.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CredentialInfo proto.InternalMessageInfo
|
||||
|
||||
func (m *CredentialInfo) GetUsername() string {
|
||||
if m != nil {
|
||||
return m.Username
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) GetEncryptedPassword() string {
|
||||
if m != nil {
|
||||
return m.EncryptedPassword
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) GetTenant() string {
|
||||
if m != nil {
|
||||
return m.Tenant
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) GetIsSuper() bool {
|
||||
if m != nil {
|
||||
return m.IsSuper
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *CredentialInfo) GetSha256Password() string {
|
||||
if m != nil {
|
||||
return m.Sha256Password
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterEnum("milvus.proto.etcd.DatabaseState", DatabaseState_name, DatabaseState_value)
|
||||
proto.RegisterEnum("milvus.proto.etcd.CollectionState", CollectionState_name, CollectionState_value)
|
||||
proto.RegisterEnum("milvus.proto.etcd.PartitionState", PartitionState_name, PartitionState_value)
|
||||
proto.RegisterEnum("milvus.proto.etcd.AliasState", AliasState_name, AliasState_value)
|
||||
proto.RegisterType((*IndexInfo)(nil), "milvus.proto.etcd.IndexInfo")
|
||||
proto.RegisterType((*FieldIndexInfo)(nil), "milvus.proto.etcd.FieldIndexInfo")
|
||||
proto.RegisterType((*CollectionInfo)(nil), "milvus.proto.etcd.CollectionInfo")
|
||||
proto.RegisterType((*PartitionInfo)(nil), "milvus.proto.etcd.PartitionInfo")
|
||||
proto.RegisterType((*AliasInfo)(nil), "milvus.proto.etcd.AliasInfo")
|
||||
proto.RegisterType((*DatabaseInfo)(nil), "milvus.proto.etcd.DatabaseInfo")
|
||||
proto.RegisterType((*SegmentIndexInfo)(nil), "milvus.proto.etcd.SegmentIndexInfo")
|
||||
proto.RegisterType((*CollectionMeta)(nil), "milvus.proto.etcd.CollectionMeta")
|
||||
proto.RegisterType((*CredentialInfo)(nil), "milvus.proto.etcd.CredentialInfo")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("etcd_meta.proto", fileDescriptor_975d306d62b73e88) }
|
||||
|
||||
var fileDescriptor_975d306d62b73e88 = []byte{
|
||||
// 1139 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xbc, 0x56, 0xcd, 0x72, 0xe3, 0x44,
|
||||
0x10, 0x5e, 0x59, 0xb6, 0x63, 0xb5, 0x7f, 0x33, 0xfb, 0x53, 0xda, 0xec, 0x2e, 0x68, 0x0d, 0x0b,
|
||||
0xae, 0x54, 0x6d, 0x52, 0x24, 0xb0, 0x70, 0x81, 0x62, 0x89, 0x6b, 0xab, 0x5c, 0xc0, 0x96, 0x4b,
|
||||
0x09, 0x7b, 0xe0, 0xa2, 0x1a, 0x4b, 0x93, 0x78, 0x40, 0x1a, 0xa9, 0x34, 0xe3, 0x2c, 0xe1, 0x09,
|
||||
0x38, 0xf2, 0x1c, 0xbc, 0x00, 0x17, 0xae, 0x3c, 0x0d, 0x67, 0xee, 0xd4, 0xcc, 0xe8, 0xdf, 0x0e,
|
||||
0xc5, 0x89, 0x9b, 0xfb, 0xd3, 0x74, 0x4f, 0x7f, 0xdd, 0xdf, 0x74, 0x1b, 0xc6, 0x44, 0xf8, 0x81,
|
||||
0x17, 0x11, 0x81, 0x8f, 0x92, 0x34, 0x16, 0x31, 0xda, 0x8f, 0x68, 0x78, 0xbd, 0xe1, 0xda, 0x3a,
|
||||
0x92, 0x5f, 0x0f, 0x06, 0x7e, 0x1c, 0x45, 0x31, 0xd3, 0xd0, 0xc1, 0x80, 0xfb, 0x6b, 0x12, 0x65,
|
||||
0xc7, 0xa7, 0x7f, 0x1a, 0x60, 0x2d, 0x58, 0x40, 0x7e, 0x5a, 0xb0, 0xcb, 0x18, 0x3d, 0x01, 0xa0,
|
||||
0xd2, 0xf0, 0x18, 0x8e, 0x88, 0x6d, 0x38, 0xc6, 0xcc, 0x72, 0x2d, 0x85, 0xbc, 0xc6, 0x11, 0x41,
|
||||
0x36, 0xec, 0x29, 0x63, 0x31, 0xb7, 0x5b, 0x8e, 0x31, 0x33, 0xdd, 0xdc, 0x44, 0x73, 0x18, 0x68,
|
||||
0xc7, 0x04, 0xa7, 0x38, 0xe2, 0xb6, 0xe9, 0x98, 0xb3, 0xfe, 0xc9, 0xd3, 0xa3, 0x5a, 0x32, 0x59,
|
||||
0x1a, 0x5f, 0x93, 0x9b, 0x37, 0x38, 0xdc, 0x90, 0x25, 0xa6, 0xa9, 0xdb, 0x57, 0x6e, 0x4b, 0xe5,
|
||||
0x25, 0xe3, 0x07, 0x24, 0x24, 0x82, 0x04, 0x76, 0xdb, 0x31, 0x66, 0x3d, 0x37, 0x37, 0xd1, 0xbb,
|
||||
0xd0, 0xf7, 0x53, 0x82, 0x05, 0xf1, 0x04, 0x8d, 0x88, 0xdd, 0x71, 0x8c, 0x59, 0xdb, 0x05, 0x0d,
|
||||
0x5d, 0xd0, 0x88, 0x4c, 0xe7, 0x30, 0x7a, 0x45, 0x49, 0x18, 0x94, 0x5c, 0x6c, 0xd8, 0xbb, 0xa4,
|
||||
0x21, 0x09, 0x16, 0x73, 0x45, 0xc4, 0x74, 0x73, 0xf3, 0x76, 0x1a, 0xd3, 0x5f, 0xbb, 0x30, 0x3a,
|
||||
0x8b, 0xc3, 0x90, 0xf8, 0x82, 0xc6, 0x4c, 0x85, 0x19, 0x41, 0xab, 0x88, 0xd0, 0x5a, 0xcc, 0xd1,
|
||||
0xe7, 0xd0, 0xd5, 0x05, 0x54, 0xbe, 0xfd, 0x93, 0x67, 0x75, 0x8e, 0x59, 0x71, 0xcb, 0x20, 0xe7,
|
||||
0x0a, 0x70, 0x33, 0xa7, 0x26, 0x11, 0xb3, 0x49, 0x04, 0x4d, 0x61, 0x90, 0xe0, 0x54, 0x50, 0x95,
|
||||
0xc0, 0x9c, 0xdb, 0x6d, 0xc7, 0x9c, 0x99, 0x6e, 0x0d, 0x43, 0x1f, 0xc0, 0xa8, 0xb0, 0x65, 0x63,
|
||||
0xb8, 0xdd, 0x71, 0xcc, 0x99, 0xe5, 0x36, 0x50, 0xf4, 0x0a, 0x86, 0x97, 0xb2, 0x28, 0x9e, 0xe2,
|
||||
0x47, 0xb8, 0xdd, 0xdd, 0xd5, 0x16, 0xa9, 0x91, 0xa3, 0x7a, 0xf1, 0xdc, 0xc1, 0x65, 0x61, 0x13,
|
||||
0x8e, 0x4e, 0xe0, 0xfe, 0x35, 0x4d, 0xc5, 0x06, 0x87, 0x9e, 0xbf, 0xc6, 0x8c, 0x91, 0x50, 0x09,
|
||||
0x84, 0xdb, 0x7b, 0xea, 0xda, 0xbb, 0xd9, 0xc7, 0x33, 0xfd, 0x4d, 0xdf, 0xfd, 0x31, 0x3c, 0x48,
|
||||
0xd6, 0x37, 0x9c, 0xfa, 0x5b, 0x4e, 0x3d, 0xe5, 0x74, 0x2f, 0xff, 0x5a, 0xf3, 0xfa, 0x12, 0x1e,
|
||||
0x17, 0x1c, 0x3c, 0x5d, 0x95, 0x40, 0x55, 0x8a, 0x0b, 0x1c, 0x25, 0xdc, 0xb6, 0x1c, 0x73, 0xd6,
|
||||
0x76, 0x0f, 0x8a, 0x33, 0x67, 0xfa, 0xc8, 0x45, 0x71, 0x42, 0x4a, 0x98, 0xaf, 0x71, 0x1a, 0x70,
|
||||
0x8f, 0x6d, 0x22, 0x1b, 0x1c, 0x63, 0xd6, 0x71, 0x2d, 0x8d, 0xbc, 0xde, 0x44, 0x68, 0x01, 0x63,
|
||||
0x2e, 0x70, 0x2a, 0xbc, 0x24, 0xe6, 0x2a, 0x02, 0xb7, 0xfb, 0xaa, 0x28, 0xce, 0x6d, 0x5a, 0x9d,
|
||||
0x63, 0x81, 0x95, 0x54, 0x47, 0xca, 0x71, 0x99, 0xfb, 0x21, 0x17, 0xf6, 0xfd, 0x98, 0x71, 0xca,
|
||||
0x05, 0x61, 0xfe, 0x8d, 0x17, 0x92, 0x6b, 0x12, 0xda, 0x03, 0xc7, 0x98, 0x8d, 0x9a, 0xa2, 0xc8,
|
||||
0x82, 0x9d, 0x95, 0xa7, 0xbf, 0x91, 0x87, 0xdd, 0x89, 0xdf, 0x40, 0xd0, 0x67, 0xd0, 0xe1, 0x02,
|
||||
0x0b, 0x62, 0x0f, 0x55, 0x9c, 0xe9, 0x8e, 0x4e, 0x55, 0xa4, 0x25, 0x4f, 0xba, 0xda, 0x01, 0xbd,
|
||||
0x04, 0x48, 0xd2, 0x38, 0x21, 0xa9, 0xa0, 0x84, 0xdb, 0xa3, 0xff, 0xfa, 0xfe, 0x2a, 0x4e, 0xe8,
|
||||
0x2e, 0x74, 0x82, 0x95, 0x47, 0x03, 0x7b, 0xac, 0xd4, 0xde, 0x0e, 0x56, 0x8b, 0x60, 0xfa, 0xb7,
|
||||
0x01, 0xc3, 0x65, 0x21, 0x3e, 0xf9, 0x22, 0x1c, 0xe8, 0x57, 0xd4, 0x98, 0x3d, 0x8d, 0x2a, 0x84,
|
||||
0xde, 0x87, 0x61, 0x4d, 0x89, 0xea, 0xa9, 0x58, 0x6e, 0x1d, 0x44, 0x5f, 0xc0, 0xa3, 0x7f, 0xe9,
|
||||
0x75, 0xf6, 0x34, 0x1e, 0xde, 0xda, 0x6a, 0xf4, 0x1e, 0x0c, 0xfd, 0xa2, 0x16, 0x32, 0xed, 0xb6,
|
||||
0xca, 0x64, 0x50, 0x82, 0x8b, 0x00, 0x7d, 0x9a, 0x17, 0xb4, 0xa3, 0x0a, 0xba, 0x4b, 0xfa, 0x05,
|
||||
0xbb, 0x6a, 0x3d, 0xa7, 0x7f, 0x18, 0x60, 0xbd, 0x0c, 0x29, 0xe6, 0xf9, 0x60, 0xc4, 0xd2, 0xa8,
|
||||
0x0d, 0x46, 0x85, 0x28, 0x2a, 0x5b, 0xa9, 0xb4, 0x76, 0xa4, 0xf2, 0x14, 0x06, 0x55, 0x96, 0x19,
|
||||
0xc1, 0x6c, 0x1c, 0x28, 0x5e, 0xe8, 0x34, 0xcf, 0xb6, 0xad, 0xb2, 0x7d, 0xb2, 0x23, 0x5b, 0x95,
|
||||
0x53, 0xad, 0xf3, 0x45, 0xdb, 0x3a, 0x95, 0xb6, 0xfd, 0x66, 0xc0, 0x40, 0x2a, 0x77, 0x85, 0x39,
|
||||
0x51, 0x0c, 0x1e, 0x81, 0x25, 0x08, 0xc3, 0x4c, 0xc8, 0x93, 0x9a, 0x40, 0x4f, 0x03, 0x8b, 0x00,
|
||||
0x21, 0x68, 0xb3, 0xb2, 0x4f, 0xea, 0xb7, 0x1c, 0x7c, 0x34, 0x50, 0x49, 0x9a, 0x6e, 0x8b, 0x06,
|
||||
0xe8, 0x45, 0x3d, 0x37, 0x67, 0x47, 0x6e, 0xf9, 0x85, 0xb5, 0xf4, 0x9a, 0xb4, 0x3b, 0x5b, 0xb4,
|
||||
0xa7, 0xbf, 0xb4, 0x60, 0x72, 0x4e, 0xae, 0x22, 0xc2, 0x44, 0x39, 0xbf, 0xa7, 0x50, 0x2d, 0x5f,
|
||||
0xae, 0xb3, 0x1a, 0xd6, 0x94, 0x62, 0x6b, 0x5b, 0x8a, 0x8f, 0xc1, 0xe2, 0x59, 0xe4, 0x79, 0x46,
|
||||
0xa6, 0x04, 0xf4, 0x8e, 0x90, 0x83, 0x6e, 0x9e, 0x89, 0x27, 0x37, 0xab, 0x3b, 0xa2, 0x53, 0x5f,
|
||||
0x75, 0x36, 0xec, 0xad, 0x36, 0x54, 0xf9, 0x74, 0xf5, 0x97, 0xcc, 0x94, 0x4c, 0x09, 0xc3, 0xab,
|
||||
0x90, 0xe8, 0x79, 0x6b, 0xef, 0xa9, 0x1d, 0xd6, 0xd7, 0x98, 0x22, 0xd6, 0x1c, 0xff, 0xbd, 0xad,
|
||||
0x3d, 0xf6, 0x97, 0x51, 0xdd, 0x40, 0xdf, 0x12, 0x81, 0xff, 0xf7, 0x0d, 0xf4, 0x0e, 0x40, 0x51,
|
||||
0xa1, 0x7c, 0xff, 0x54, 0x10, 0xf4, 0xac, 0xb2, 0x7d, 0x3c, 0x81, 0xaf, 0xf2, 0xed, 0x53, 0x3e,
|
||||
0xef, 0x0b, 0x7c, 0xc5, 0xb7, 0x16, 0x59, 0x77, 0x7b, 0x91, 0x4d, 0x7f, 0x97, 0x6c, 0x53, 0x12,
|
||||
0x10, 0x26, 0x28, 0x0e, 0x55, 0xdb, 0x0f, 0xa0, 0xb7, 0xe1, 0x24, 0xad, 0xbc, 0xb3, 0xc2, 0x46,
|
||||
0xcf, 0x01, 0x11, 0xe6, 0xa7, 0x37, 0x89, 0x14, 0x53, 0x82, 0x39, 0x7f, 0x1b, 0xa7, 0x41, 0x26,
|
||||
0xda, 0xfd, 0xe2, 0xcb, 0x32, 0xfb, 0x80, 0x1e, 0x40, 0x57, 0x2b, 0x5c, 0x91, 0xb4, 0xdc, 0xcc,
|
||||
0x42, 0x0f, 0xa1, 0x47, 0xb9, 0xc7, 0x37, 0x09, 0x49, 0xf3, 0xff, 0x19, 0x94, 0x9f, 0x4b, 0x13,
|
||||
0x7d, 0x08, 0x63, 0xbe, 0xc6, 0x27, 0x9f, 0xbc, 0x28, 0xc3, 0x77, 0x94, 0xef, 0x48, 0xc3, 0x79,
|
||||
0xec, 0xc3, 0x9f, 0x61, 0x58, 0x53, 0x3b, 0xba, 0x0b, 0xe3, 0x1c, 0xf8, 0x8e, 0xfd, 0xc8, 0xe2,
|
||||
0xb7, 0x6c, 0x72, 0xa7, 0x0a, 0x66, 0xe3, 0x6b, 0x62, 0xa0, 0x7b, 0x30, 0xa9, 0x81, 0x94, 0x5d,
|
||||
0x4d, 0x5a, 0x55, 0x74, 0x9e, 0xc6, 0x49, 0x22, 0x51, 0xb3, 0x1a, 0x40, 0xa1, 0x24, 0x98, 0xb4,
|
||||
0x0f, 0x63, 0x18, 0x37, 0x96, 0x00, 0xba, 0x0f, 0xfb, 0x25, 0x94, 0x5f, 0x75, 0x07, 0x3d, 0x00,
|
||||
0xd4, 0x80, 0x65, 0x58, 0xa3, 0x8e, 0x17, 0xd7, 0xb5, 0xea, 0x61, 0xf2, 0x0b, 0xcd, 0xc3, 0x1f,
|
||||
0x60, 0x54, 0x1f, 0x92, 0x32, 0xdb, 0x65, 0x63, 0x30, 0x4f, 0xee, 0x48, 0xf7, 0x3a, 0xaa, 0x6f,
|
||||
0xab, 0xc2, 0x95, 0xcb, 0xaa, 0x31, 0xca, 0xbb, 0xde, 0x00, 0x94, 0x23, 0x0e, 0x4d, 0x60, 0xa0,
|
||||
0xac, 0xf2, 0x8e, 0x7d, 0x18, 0x96, 0x88, 0x8e, 0x9f, 0x43, 0x95, 0xd8, 0xb9, 0x5f, 0x11, 0xf7,
|
||||
0xab, 0xd3, 0xef, 0x3f, 0xba, 0xa2, 0x62, 0xbd, 0x59, 0xc9, 0x35, 0x78, 0xac, 0x5f, 0xcc, 0x73,
|
||||
0x1a, 0x67, 0xbf, 0x8e, 0x29, 0x13, 0x52, 0x64, 0xe1, 0xb1, 0x7a, 0x44, 0xc7, 0x72, 0x9c, 0x25,
|
||||
0xab, 0x55, 0x57, 0x59, 0xa7, 0xff, 0x04, 0x00, 0x00, 0xff, 0xff, 0xee, 0x8d, 0xf3, 0xf4, 0x66,
|
||||
0x0b, 0x00, 0x00,
|
||||
}
|
|
@ -1,300 +0,0 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: index_cgo_msg.proto
|
||||
|
||||
package indexcgopb
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
||||
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 TypeParams struct {
|
||||
Params []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=params,proto3" json:"params,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *TypeParams) Reset() { *m = TypeParams{} }
|
||||
func (m *TypeParams) String() string { return proto.CompactTextString(m) }
|
||||
func (*TypeParams) ProtoMessage() {}
|
||||
func (*TypeParams) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{0}
|
||||
}
|
||||
|
||||
func (m *TypeParams) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_TypeParams.Unmarshal(m, b)
|
||||
}
|
||||
func (m *TypeParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_TypeParams.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *TypeParams) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_TypeParams.Merge(m, src)
|
||||
}
|
||||
func (m *TypeParams) XXX_Size() int {
|
||||
return xxx_messageInfo_TypeParams.Size(m)
|
||||
}
|
||||
func (m *TypeParams) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_TypeParams.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_TypeParams proto.InternalMessageInfo
|
||||
|
||||
func (m *TypeParams) GetParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.Params
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type IndexParams struct {
|
||||
Params []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=params,proto3" json:"params,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *IndexParams) Reset() { *m = IndexParams{} }
|
||||
func (m *IndexParams) String() string { return proto.CompactTextString(m) }
|
||||
func (*IndexParams) ProtoMessage() {}
|
||||
func (*IndexParams) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{1}
|
||||
}
|
||||
|
||||
func (m *IndexParams) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_IndexParams.Unmarshal(m, b)
|
||||
}
|
||||
func (m *IndexParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_IndexParams.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *IndexParams) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_IndexParams.Merge(m, src)
|
||||
}
|
||||
func (m *IndexParams) XXX_Size() int {
|
||||
return xxx_messageInfo_IndexParams.Size(m)
|
||||
}
|
||||
func (m *IndexParams) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_IndexParams.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_IndexParams proto.InternalMessageInfo
|
||||
|
||||
func (m *IndexParams) GetParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.Params
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
// TypeParams & IndexParams will be replaced by MapParams later
|
||||
type MapParams struct {
|
||||
Params []*commonpb.KeyValuePair `protobuf:"bytes,1,rep,name=params,proto3" json:"params,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *MapParams) Reset() { *m = MapParams{} }
|
||||
func (m *MapParams) String() string { return proto.CompactTextString(m) }
|
||||
func (*MapParams) ProtoMessage() {}
|
||||
func (*MapParams) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{2}
|
||||
}
|
||||
|
||||
func (m *MapParams) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_MapParams.Unmarshal(m, b)
|
||||
}
|
||||
func (m *MapParams) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_MapParams.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *MapParams) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_MapParams.Merge(m, src)
|
||||
}
|
||||
func (m *MapParams) XXX_Size() int {
|
||||
return xxx_messageInfo_MapParams.Size(m)
|
||||
}
|
||||
func (m *MapParams) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_MapParams.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_MapParams proto.InternalMessageInfo
|
||||
|
||||
func (m *MapParams) GetParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.Params
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type MapParamsV2 struct {
|
||||
Params map[string]string `protobuf:"bytes,1,rep,name=params,proto3" json:"params,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *MapParamsV2) Reset() { *m = MapParamsV2{} }
|
||||
func (m *MapParamsV2) String() string { return proto.CompactTextString(m) }
|
||||
func (*MapParamsV2) ProtoMessage() {}
|
||||
func (*MapParamsV2) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{3}
|
||||
}
|
||||
|
||||
func (m *MapParamsV2) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_MapParamsV2.Unmarshal(m, b)
|
||||
}
|
||||
func (m *MapParamsV2) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_MapParamsV2.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *MapParamsV2) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_MapParamsV2.Merge(m, src)
|
||||
}
|
||||
func (m *MapParamsV2) XXX_Size() int {
|
||||
return xxx_messageInfo_MapParamsV2.Size(m)
|
||||
}
|
||||
func (m *MapParamsV2) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_MapParamsV2.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_MapParamsV2 proto.InternalMessageInfo
|
||||
|
||||
func (m *MapParamsV2) GetParams() map[string]string {
|
||||
if m != nil {
|
||||
return m.Params
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type Binary struct {
|
||||
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
|
||||
Value []byte `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *Binary) Reset() { *m = Binary{} }
|
||||
func (m *Binary) String() string { return proto.CompactTextString(m) }
|
||||
func (*Binary) ProtoMessage() {}
|
||||
func (*Binary) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{4}
|
||||
}
|
||||
|
||||
func (m *Binary) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_Binary.Unmarshal(m, b)
|
||||
}
|
||||
func (m *Binary) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_Binary.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *Binary) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_Binary.Merge(m, src)
|
||||
}
|
||||
func (m *Binary) XXX_Size() int {
|
||||
return xxx_messageInfo_Binary.Size(m)
|
||||
}
|
||||
func (m *Binary) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_Binary.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_Binary proto.InternalMessageInfo
|
||||
|
||||
func (m *Binary) GetKey() string {
|
||||
if m != nil {
|
||||
return m.Key
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *Binary) GetValue() []byte {
|
||||
if m != nil {
|
||||
return m.Value
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type BinarySet struct {
|
||||
Datas []*Binary `protobuf:"bytes,1,rep,name=datas,proto3" json:"datas,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *BinarySet) Reset() { *m = BinarySet{} }
|
||||
func (m *BinarySet) String() string { return proto.CompactTextString(m) }
|
||||
func (*BinarySet) ProtoMessage() {}
|
||||
func (*BinarySet) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_c009bd9544a7343c, []int{5}
|
||||
}
|
||||
|
||||
func (m *BinarySet) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_BinarySet.Unmarshal(m, b)
|
||||
}
|
||||
func (m *BinarySet) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_BinarySet.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *BinarySet) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_BinarySet.Merge(m, src)
|
||||
}
|
||||
func (m *BinarySet) XXX_Size() int {
|
||||
return xxx_messageInfo_BinarySet.Size(m)
|
||||
}
|
||||
func (m *BinarySet) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_BinarySet.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_BinarySet proto.InternalMessageInfo
|
||||
|
||||
func (m *BinarySet) GetDatas() []*Binary {
|
||||
if m != nil {
|
||||
return m.Datas
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*TypeParams)(nil), "milvus.proto.indexcgo.TypeParams")
|
||||
proto.RegisterType((*IndexParams)(nil), "milvus.proto.indexcgo.IndexParams")
|
||||
proto.RegisterType((*MapParams)(nil), "milvus.proto.indexcgo.MapParams")
|
||||
proto.RegisterType((*MapParamsV2)(nil), "milvus.proto.indexcgo.MapParamsV2")
|
||||
proto.RegisterMapType((map[string]string)(nil), "milvus.proto.indexcgo.MapParamsV2.ParamsEntry")
|
||||
proto.RegisterType((*Binary)(nil), "milvus.proto.indexcgo.Binary")
|
||||
proto.RegisterType((*BinarySet)(nil), "milvus.proto.indexcgo.BinarySet")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("index_cgo_msg.proto", fileDescriptor_c009bd9544a7343c) }
|
||||
|
||||
var fileDescriptor_c009bd9544a7343c = []byte{
|
||||
// 289 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x90, 0x41, 0x4b, 0xc3, 0x30,
|
||||
0x14, 0xc7, 0xe9, 0xc6, 0x0a, 0x7d, 0xdd, 0x41, 0xa2, 0x42, 0x19, 0x08, 0xb3, 0xa7, 0x5d, 0x4c,
|
||||
0x65, 0x43, 0x74, 0x9e, 0x64, 0xe0, 0x54, 0x44, 0x18, 0x55, 0x76, 0xf0, 0x32, 0xd2, 0x2e, 0xd4,
|
||||
0x60, 0x9b, 0x94, 0x34, 0x1d, 0xf6, 0x5b, 0xf8, 0x91, 0xa5, 0x49, 0x2b, 0x53, 0x94, 0x1d, 0x76,
|
||||
0xfb, 0xe7, 0xcf, 0xfb, 0xfd, 0xda, 0xf7, 0xe0, 0x90, 0xf1, 0x35, 0xfd, 0x58, 0xc5, 0x89, 0x58,
|
||||
0x65, 0x45, 0x82, 0x73, 0x29, 0x94, 0x40, 0xc7, 0x19, 0x4b, 0x37, 0x65, 0x61, 0x5e, 0x58, 0x4f,
|
||||
0xc4, 0x89, 0x18, 0xf4, 0x63, 0x91, 0x65, 0x82, 0x9b, 0xda, 0xbf, 0x03, 0x78, 0xa9, 0x72, 0xba,
|
||||
0x20, 0x92, 0x64, 0x05, 0x9a, 0x82, 0x9d, 0xeb, 0xe4, 0x59, 0xc3, 0xee, 0xc8, 0x1d, 0x9f, 0xe2,
|
||||
0x1f, 0x8e, 0x86, 0x7c, 0xa4, 0xd5, 0x92, 0xa4, 0x25, 0x5d, 0x10, 0x26, 0xc3, 0x06, 0xf0, 0xef,
|
||||
0xc1, 0x7d, 0xa8, 0x3f, 0xb1, 0xbf, 0x69, 0x0e, 0xce, 0x13, 0xc9, 0xf7, 0xf7, 0x7c, 0x5a, 0xe0,
|
||||
0x7e, 0x8b, 0x96, 0x63, 0x34, 0xff, 0xa5, 0xc2, 0xf8, 0xcf, 0x03, 0xe1, 0x2d, 0x06, 0x9b, 0x70,
|
||||
0xcb, 0x95, 0xac, 0x5a, 0xef, 0x60, 0x0a, 0xee, 0x56, 0x8d, 0x0e, 0xa0, 0xfb, 0x4e, 0x2b, 0xcf,
|
||||
0x1a, 0x5a, 0x23, 0x27, 0xac, 0x23, 0x3a, 0x82, 0xde, 0xa6, 0xfe, 0x1b, 0xaf, 0xa3, 0x3b, 0xf3,
|
||||
0xb8, 0xee, 0x5c, 0x59, 0xfe, 0x39, 0xd8, 0x33, 0xc6, 0xc9, 0x6e, 0xaa, 0xdf, 0x50, 0xfe, 0x0d,
|
||||
0x38, 0x86, 0x78, 0xa6, 0x0a, 0x4d, 0xa0, 0xb7, 0x26, 0x8a, 0xb4, 0x0b, 0x9c, 0xfc, 0xb3, 0x80,
|
||||
0x01, 0x42, 0x33, 0x3b, 0xbb, 0x7c, 0xbd, 0x48, 0x98, 0x7a, 0x2b, 0xa3, 0xfa, 0x58, 0x81, 0x21,
|
||||
0xce, 0x98, 0x68, 0x52, 0xc0, 0xb8, 0xa2, 0x92, 0x93, 0x34, 0xd0, 0x92, 0xa0, 0x95, 0xe4, 0x51,
|
||||
0x64, 0xeb, 0x66, 0xf2, 0x15, 0x00, 0x00, 0xff, 0xff, 0x83, 0x12, 0x13, 0xfb, 0x5d, 0x02, 0x00,
|
||||
0x00,
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,916 +0,0 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: proxy.proto
|
||||
|
||||
package proxypb
|
||||
|
||||
import (
|
||||
context "context"
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
||||
milvuspb "github.com/milvus-io/milvus-proto/go-api/v2/milvuspb"
|
||||
internalpb "github.com/milvus-io/milvus/internal/proto/internalpb"
|
||||
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 InvalidateCollMetaCacheRequest struct {
|
||||
// MsgType:
|
||||
//
|
||||
// DropCollection -> {meta cache, dml channels}
|
||||
// Other -> {meta cache}
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
DbName string `protobuf:"bytes,2,opt,name=db_name,json=dbName,proto3" json:"db_name,omitempty"`
|
||||
CollectionName string `protobuf:"bytes,3,opt,name=collection_name,json=collectionName,proto3" json:"collection_name,omitempty"`
|
||||
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 *InvalidateCollMetaCacheRequest) Reset() { *m = InvalidateCollMetaCacheRequest{} }
|
||||
func (m *InvalidateCollMetaCacheRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*InvalidateCollMetaCacheRequest) ProtoMessage() {}
|
||||
func (*InvalidateCollMetaCacheRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{0}
|
||||
}
|
||||
|
||||
func (m *InvalidateCollMetaCacheRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_InvalidateCollMetaCacheRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *InvalidateCollMetaCacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_InvalidateCollMetaCacheRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *InvalidateCollMetaCacheRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_InvalidateCollMetaCacheRequest.Merge(m, src)
|
||||
}
|
||||
func (m *InvalidateCollMetaCacheRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_InvalidateCollMetaCacheRequest.Size(m)
|
||||
}
|
||||
func (m *InvalidateCollMetaCacheRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_InvalidateCollMetaCacheRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_InvalidateCollMetaCacheRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *InvalidateCollMetaCacheRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *InvalidateCollMetaCacheRequest) GetDbName() string {
|
||||
if m != nil {
|
||||
return m.DbName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *InvalidateCollMetaCacheRequest) GetCollectionName() string {
|
||||
if m != nil {
|
||||
return m.CollectionName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *InvalidateCollMetaCacheRequest) GetCollectionID() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type InvalidateCredCacheRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *InvalidateCredCacheRequest) Reset() { *m = InvalidateCredCacheRequest{} }
|
||||
func (m *InvalidateCredCacheRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*InvalidateCredCacheRequest) ProtoMessage() {}
|
||||
func (*InvalidateCredCacheRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{1}
|
||||
}
|
||||
|
||||
func (m *InvalidateCredCacheRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_InvalidateCredCacheRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *InvalidateCredCacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_InvalidateCredCacheRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *InvalidateCredCacheRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_InvalidateCredCacheRequest.Merge(m, src)
|
||||
}
|
||||
func (m *InvalidateCredCacheRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_InvalidateCredCacheRequest.Size(m)
|
||||
}
|
||||
func (m *InvalidateCredCacheRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_InvalidateCredCacheRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_InvalidateCredCacheRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *InvalidateCredCacheRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *InvalidateCredCacheRequest) GetUsername() string {
|
||||
if m != nil {
|
||||
return m.Username
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type UpdateCredCacheRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
Username string `protobuf:"bytes,2,opt,name=username,proto3" json:"username,omitempty"`
|
||||
// password stored in cache
|
||||
Password string `protobuf:"bytes,3,opt,name=password,proto3" json:"password,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *UpdateCredCacheRequest) Reset() { *m = UpdateCredCacheRequest{} }
|
||||
func (m *UpdateCredCacheRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*UpdateCredCacheRequest) ProtoMessage() {}
|
||||
func (*UpdateCredCacheRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{2}
|
||||
}
|
||||
|
||||
func (m *UpdateCredCacheRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_UpdateCredCacheRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *UpdateCredCacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_UpdateCredCacheRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *UpdateCredCacheRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_UpdateCredCacheRequest.Merge(m, src)
|
||||
}
|
||||
func (m *UpdateCredCacheRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_UpdateCredCacheRequest.Size(m)
|
||||
}
|
||||
func (m *UpdateCredCacheRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_UpdateCredCacheRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_UpdateCredCacheRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *UpdateCredCacheRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *UpdateCredCacheRequest) GetUsername() string {
|
||||
if m != nil {
|
||||
return m.Username
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *UpdateCredCacheRequest) GetPassword() string {
|
||||
if m != nil {
|
||||
return m.Password
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type RefreshPolicyInfoCacheRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
OpType int32 `protobuf:"varint,2,opt,name=opType,proto3" json:"opType,omitempty"`
|
||||
OpKey string `protobuf:"bytes,3,opt,name=opKey,proto3" json:"opKey,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *RefreshPolicyInfoCacheRequest) Reset() { *m = RefreshPolicyInfoCacheRequest{} }
|
||||
func (m *RefreshPolicyInfoCacheRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*RefreshPolicyInfoCacheRequest) ProtoMessage() {}
|
||||
func (*RefreshPolicyInfoCacheRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{3}
|
||||
}
|
||||
|
||||
func (m *RefreshPolicyInfoCacheRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_RefreshPolicyInfoCacheRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *RefreshPolicyInfoCacheRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_RefreshPolicyInfoCacheRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *RefreshPolicyInfoCacheRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_RefreshPolicyInfoCacheRequest.Merge(m, src)
|
||||
}
|
||||
func (m *RefreshPolicyInfoCacheRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_RefreshPolicyInfoCacheRequest.Size(m)
|
||||
}
|
||||
func (m *RefreshPolicyInfoCacheRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_RefreshPolicyInfoCacheRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_RefreshPolicyInfoCacheRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *RefreshPolicyInfoCacheRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *RefreshPolicyInfoCacheRequest) GetOpType() int32 {
|
||||
if m != nil {
|
||||
return m.OpType
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *RefreshPolicyInfoCacheRequest) GetOpKey() string {
|
||||
if m != nil {
|
||||
return m.OpKey
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
type CollectionRate struct {
|
||||
Collection int64 `protobuf:"varint,1,opt,name=collection,proto3" json:"collection,omitempty"`
|
||||
Rates []*internalpb.Rate `protobuf:"bytes,2,rep,name=rates,proto3" json:"rates,omitempty"`
|
||||
States []milvuspb.QuotaState `protobuf:"varint,3,rep,packed,name=states,proto3,enum=milvus.proto.milvus.QuotaState" json:"states,omitempty"`
|
||||
Codes []commonpb.ErrorCode `protobuf:"varint,4,rep,packed,name=codes,proto3,enum=milvus.proto.common.ErrorCode" json:"codes,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CollectionRate) Reset() { *m = CollectionRate{} }
|
||||
func (m *CollectionRate) String() string { return proto.CompactTextString(m) }
|
||||
func (*CollectionRate) ProtoMessage() {}
|
||||
func (*CollectionRate) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{4}
|
||||
}
|
||||
|
||||
func (m *CollectionRate) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CollectionRate.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CollectionRate) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CollectionRate.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CollectionRate) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CollectionRate.Merge(m, src)
|
||||
}
|
||||
func (m *CollectionRate) XXX_Size() int {
|
||||
return xxx_messageInfo_CollectionRate.Size(m)
|
||||
}
|
||||
func (m *CollectionRate) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CollectionRate.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CollectionRate proto.InternalMessageInfo
|
||||
|
||||
func (m *CollectionRate) GetCollection() int64 {
|
||||
if m != nil {
|
||||
return m.Collection
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionRate) GetRates() []*internalpb.Rate {
|
||||
if m != nil {
|
||||
return m.Rates
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionRate) GetStates() []milvuspb.QuotaState {
|
||||
if m != nil {
|
||||
return m.States
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *CollectionRate) GetCodes() []commonpb.ErrorCode {
|
||||
if m != nil {
|
||||
return m.Codes
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type SetRatesRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
Rates []*CollectionRate `protobuf:"bytes,2,rep,name=rates,proto3" json:"rates,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *SetRatesRequest) Reset() { *m = SetRatesRequest{} }
|
||||
func (m *SetRatesRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*SetRatesRequest) ProtoMessage() {}
|
||||
func (*SetRatesRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{5}
|
||||
}
|
||||
|
||||
func (m *SetRatesRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_SetRatesRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *SetRatesRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_SetRatesRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *SetRatesRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_SetRatesRequest.Merge(m, src)
|
||||
}
|
||||
func (m *SetRatesRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_SetRatesRequest.Size(m)
|
||||
}
|
||||
func (m *SetRatesRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_SetRatesRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_SetRatesRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *SetRatesRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *SetRatesRequest) GetRates() []*CollectionRate {
|
||||
if m != nil {
|
||||
return m.Rates
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type ListClientInfosRequest struct {
|
||||
Base *commonpb.MsgBase `protobuf:"bytes,1,opt,name=base,proto3" json:"base,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListClientInfosRequest) Reset() { *m = ListClientInfosRequest{} }
|
||||
func (m *ListClientInfosRequest) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListClientInfosRequest) ProtoMessage() {}
|
||||
func (*ListClientInfosRequest) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{6}
|
||||
}
|
||||
|
||||
func (m *ListClientInfosRequest) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListClientInfosRequest.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListClientInfosRequest) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListClientInfosRequest.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ListClientInfosRequest) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListClientInfosRequest.Merge(m, src)
|
||||
}
|
||||
func (m *ListClientInfosRequest) XXX_Size() int {
|
||||
return xxx_messageInfo_ListClientInfosRequest.Size(m)
|
||||
}
|
||||
func (m *ListClientInfosRequest) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListClientInfosRequest.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListClientInfosRequest proto.InternalMessageInfo
|
||||
|
||||
func (m *ListClientInfosRequest) GetBase() *commonpb.MsgBase {
|
||||
if m != nil {
|
||||
return m.Base
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type ListClientInfosResponse struct {
|
||||
Status *commonpb.Status `protobuf:"bytes,1,opt,name=status,proto3" json:"status,omitempty"`
|
||||
ClientInfos []*commonpb.ClientInfo `protobuf:"bytes,2,rep,name=client_infos,json=clientInfos,proto3" json:"client_infos,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *ListClientInfosResponse) Reset() { *m = ListClientInfosResponse{} }
|
||||
func (m *ListClientInfosResponse) String() string { return proto.CompactTextString(m) }
|
||||
func (*ListClientInfosResponse) ProtoMessage() {}
|
||||
func (*ListClientInfosResponse) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_700b50b08ed8dbaf, []int{7}
|
||||
}
|
||||
|
||||
func (m *ListClientInfosResponse) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_ListClientInfosResponse.Unmarshal(m, b)
|
||||
}
|
||||
func (m *ListClientInfosResponse) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_ListClientInfosResponse.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *ListClientInfosResponse) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_ListClientInfosResponse.Merge(m, src)
|
||||
}
|
||||
func (m *ListClientInfosResponse) XXX_Size() int {
|
||||
return xxx_messageInfo_ListClientInfosResponse.Size(m)
|
||||
}
|
||||
func (m *ListClientInfosResponse) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_ListClientInfosResponse.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_ListClientInfosResponse proto.InternalMessageInfo
|
||||
|
||||
func (m *ListClientInfosResponse) GetStatus() *commonpb.Status {
|
||||
if m != nil {
|
||||
return m.Status
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *ListClientInfosResponse) GetClientInfos() []*commonpb.ClientInfo {
|
||||
if m != nil {
|
||||
return m.ClientInfos
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*InvalidateCollMetaCacheRequest)(nil), "milvus.proto.proxy.InvalidateCollMetaCacheRequest")
|
||||
proto.RegisterType((*InvalidateCredCacheRequest)(nil), "milvus.proto.proxy.InvalidateCredCacheRequest")
|
||||
proto.RegisterType((*UpdateCredCacheRequest)(nil), "milvus.proto.proxy.UpdateCredCacheRequest")
|
||||
proto.RegisterType((*RefreshPolicyInfoCacheRequest)(nil), "milvus.proto.proxy.RefreshPolicyInfoCacheRequest")
|
||||
proto.RegisterType((*CollectionRate)(nil), "milvus.proto.proxy.CollectionRate")
|
||||
proto.RegisterType((*SetRatesRequest)(nil), "milvus.proto.proxy.SetRatesRequest")
|
||||
proto.RegisterType((*ListClientInfosRequest)(nil), "milvus.proto.proxy.ListClientInfosRequest")
|
||||
proto.RegisterType((*ListClientInfosResponse)(nil), "milvus.proto.proxy.ListClientInfosResponse")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("proxy.proto", fileDescriptor_700b50b08ed8dbaf) }
|
||||
|
||||
var fileDescriptor_700b50b08ed8dbaf = []byte{
|
||||
// 735 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xb4, 0x54, 0xdd, 0x4e, 0x1a, 0x5b,
|
||||
0x14, 0x76, 0x44, 0x38, 0x9e, 0x05, 0x81, 0x64, 0xc7, 0x83, 0x1c, 0x3c, 0x2a, 0x19, 0x4f, 0x2a,
|
||||
0xb1, 0x29, 0x54, 0x34, 0x69, 0xaf, 0xc5, 0x86, 0xd8, 0x56, 0x63, 0x87, 0xf6, 0xa6, 0x37, 0x66,
|
||||
0x33, 0xb3, 0x94, 0x6d, 0x86, 0xbd, 0xc7, 0xd9, 0x1b, 0x5b, 0x2e, 0x9a, 0x26, 0x7d, 0x84, 0xbe,
|
||||
0x40, 0x5f, 0xa3, 0xcf, 0xd1, 0x27, 0x6a, 0xe6, 0x87, 0x81, 0xc1, 0xad, 0xb4, 0x9a, 0xde, 0xb1,
|
||||
0xf6, 0x7c, 0x6b, 0x7d, 0xdf, 0xfa, 0xe1, 0x83, 0xbc, 0xe7, 0x8b, 0x8f, 0xa3, 0x86, 0xe7, 0x0b,
|
||||
0x25, 0x08, 0x19, 0x30, 0xf7, 0x7a, 0x28, 0xa3, 0xa8, 0x11, 0x7e, 0xa9, 0x16, 0x6c, 0x31, 0x18,
|
||||
0x08, 0x1e, 0xbd, 0x55, 0x8b, 0x8c, 0x2b, 0xf4, 0x39, 0x75, 0xe3, 0xb8, 0x30, 0x9d, 0x61, 0x7e,
|
||||
0x37, 0x60, 0xe3, 0x88, 0x5f, 0x53, 0x97, 0x39, 0x54, 0x61, 0x5b, 0xb8, 0xee, 0x31, 0x2a, 0xda,
|
||||
0xa6, 0x76, 0x1f, 0x2d, 0xbc, 0x1a, 0xa2, 0x54, 0xe4, 0x29, 0x2c, 0xf5, 0xa8, 0xc4, 0x8a, 0x51,
|
||||
0x33, 0xea, 0xf9, 0xd6, 0x7f, 0x8d, 0x14, 0x63, 0x4c, 0x75, 0x2c, 0x2f, 0x0e, 0xa8, 0x44, 0x2b,
|
||||
0x44, 0x92, 0x55, 0xf8, 0xcb, 0xe9, 0x9d, 0x71, 0x3a, 0xc0, 0xca, 0x62, 0xcd, 0xa8, 0xff, 0x6d,
|
||||
0xe5, 0x9c, 0xde, 0x09, 0x1d, 0x20, 0xd9, 0x86, 0x92, 0x2d, 0x5c, 0x17, 0x6d, 0xc5, 0x04, 0x8f,
|
||||
0x00, 0x99, 0x10, 0x50, 0x9c, 0x3c, 0x87, 0x40, 0x13, 0x0a, 0x93, 0x97, 0xa3, 0xc3, 0xca, 0x52,
|
||||
0xcd, 0xa8, 0x67, 0xac, 0xd4, 0x9b, 0x79, 0x09, 0xd5, 0x29, 0xe5, 0x3e, 0x3a, 0x0f, 0x54, 0x5d,
|
||||
0x85, 0xe5, 0xa1, 0x0c, 0x26, 0x95, 0xc8, 0x4e, 0x62, 0xf3, 0x8b, 0x01, 0xe5, 0x77, 0xde, 0x9f,
|
||||
0x27, 0x0a, 0xbe, 0x79, 0x54, 0xca, 0x0f, 0xc2, 0x77, 0xe2, 0xd1, 0x24, 0xb1, 0xf9, 0x19, 0xd6,
|
||||
0x2d, 0x3c, 0xf7, 0x51, 0xf6, 0x4f, 0x85, 0xcb, 0xec, 0xd1, 0x11, 0x3f, 0x17, 0x0f, 0x94, 0x52,
|
||||
0x86, 0x9c, 0xf0, 0xde, 0x8e, 0xbc, 0x48, 0x48, 0xd6, 0x8a, 0x23, 0xb2, 0x02, 0x59, 0xe1, 0xbd,
|
||||
0xc2, 0x51, 0xac, 0x21, 0x0a, 0xcc, 0x1f, 0x06, 0x14, 0xdb, 0xc9, 0x0a, 0x2c, 0xaa, 0x90, 0x6c,
|
||||
0x00, 0x4c, 0x96, 0x12, 0x12, 0x67, 0xac, 0xa9, 0x17, 0xb2, 0x0b, 0x59, 0x9f, 0x2a, 0x94, 0x95,
|
||||
0xc5, 0x5a, 0xa6, 0x9e, 0x6f, 0xad, 0xa5, 0x35, 0x25, 0xa7, 0x19, 0xd4, 0xb2, 0x22, 0x24, 0x79,
|
||||
0x06, 0x39, 0xa9, 0xc2, 0x9c, 0x4c, 0x2d, 0x53, 0x2f, 0xb6, 0x36, 0xd3, 0x39, 0x71, 0xf0, 0x66,
|
||||
0x28, 0x14, 0xed, 0x06, 0x38, 0x2b, 0x86, 0x93, 0x7d, 0xc8, 0xda, 0xc2, 0x41, 0x59, 0x59, 0x0a,
|
||||
0xf3, 0x36, 0xb4, 0xfd, 0xbf, 0xf0, 0x7d, 0xe1, 0xb7, 0x85, 0x83, 0x56, 0x04, 0x36, 0x3f, 0x41,
|
||||
0xa9, 0x8b, 0x2a, 0x10, 0x20, 0xef, 0x3f, 0xc7, 0xe7, 0xe9, 0x36, 0xcd, 0xc6, 0xcd, 0xbf, 0x65,
|
||||
0x23, 0x3d, 0xb9, 0xb8, 0x5b, 0xf3, 0x25, 0x94, 0x5f, 0x33, 0xa9, 0xda, 0x2e, 0x43, 0xae, 0x82,
|
||||
0x8d, 0xde, 0x5f, 0x85, 0xf9, 0xd5, 0x80, 0xd5, 0x1b, 0xc5, 0xa4, 0x27, 0xb8, 0x44, 0xb2, 0x17,
|
||||
0x4d, 0x75, 0x28, 0xe3, 0x7a, 0x6b, 0xda, 0x7a, 0xdd, 0x10, 0x62, 0xc5, 0x50, 0x72, 0x00, 0x05,
|
||||
0x3b, 0xac, 0x75, 0xc6, 0x82, 0x62, 0x71, 0x77, 0x9b, 0xda, 0xd4, 0x09, 0xa9, 0x95, 0xb7, 0x27,
|
||||
0x02, 0x5a, 0xdf, 0x96, 0x21, 0x7b, 0x1a, 0x0c, 0x80, 0xb8, 0x40, 0x3a, 0xa8, 0xda, 0x62, 0xe0,
|
||||
0x09, 0x8e, 0x5c, 0x75, 0xa3, 0xad, 0x35, 0xb4, 0xeb, 0xbd, 0x09, 0x8c, 0xc7, 0x52, 0xfd, 0x5f,
|
||||
0x8b, 0x9f, 0x01, 0x9b, 0x0b, 0xe4, 0x0a, 0x56, 0x3a, 0x18, 0x86, 0x4c, 0x2a, 0x66, 0xcb, 0x76,
|
||||
0x9f, 0x72, 0x8e, 0x2e, 0x69, 0xdd, 0x72, 0x82, 0x3a, 0xf0, 0x98, 0x73, 0x4b, 0xcb, 0xd9, 0x55,
|
||||
0x3e, 0xe3, 0x17, 0xe3, 0x09, 0x9b, 0x0b, 0xc4, 0x87, 0xf5, 0xb4, 0x97, 0x46, 0xeb, 0x4e, 0x1c,
|
||||
0x75, 0x96, 0x3b, 0xba, 0x8b, 0xbb, 0xed, 0xb7, 0x7a, 0xd7, 0xa2, 0xcc, 0x05, 0x42, 0xa1, 0xd0,
|
||||
0x41, 0x75, 0xe8, 0x8c, 0xdb, 0xdb, 0xb9, 0xbd, 0xbd, 0x04, 0xf4, 0x9b, 0x6d, 0x5d, 0xc2, 0xbf,
|
||||
0x69, 0xa3, 0x45, 0xae, 0x18, 0x75, 0xa3, 0x96, 0x1a, 0x73, 0x5a, 0x9a, 0xb1, 0xcb, 0x79, 0xed,
|
||||
0xf4, 0xe0, 0x9f, 0x89, 0xcf, 0x4e, 0xf3, 0xec, 0xe8, 0x78, 0xf4, 0x96, 0x3c, 0x8f, 0xe3, 0x12,
|
||||
0xca, 0x7a, 0x1f, 0x25, 0xbb, 0x3a, 0x92, 0x3b, 0x3d, 0x77, 0x1e, 0x97, 0x03, 0xa5, 0x0e, 0xaa,
|
||||
0xf0, 0xfe, 0x8f, 0x51, 0xf9, 0xcc, 0x96, 0xe4, 0xd1, 0x6d, 0x07, 0x1f, 0x03, 0xc6, 0x95, 0xb7,
|
||||
0xe7, 0xe2, 0x92, 0x0d, 0x9d, 0xc0, 0xf2, 0xd8, 0xc3, 0xc8, 0x96, 0xae, 0x87, 0x19, 0x87, 0x9b,
|
||||
0xa7, 0xda, 0x85, 0xd2, 0x8c, 0x8f, 0xe8, 0xe7, 0xaf, 0x77, 0xae, 0xea, 0xe3, 0x5f, 0xc2, 0x8e,
|
||||
0xd5, 0x1f, 0xec, 0xbf, 0x6f, 0x5d, 0x30, 0xd5, 0x1f, 0xf6, 0x02, 0x1d, 0xcd, 0x28, 0xf5, 0x09,
|
||||
0x13, 0xf1, 0xaf, 0xe6, 0xf8, 0x84, 0x9b, 0x61, 0xb5, 0x66, 0x58, 0xcd, 0xeb, 0xf5, 0x72, 0x61,
|
||||
0xb8, 0xf7, 0x33, 0x00, 0x00, 0xff, 0xff, 0x0e, 0x7a, 0xad, 0xdf, 0x0f, 0x09, 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
|
||||
|
||||
// ProxyClient is the client API for Proxy service.
|
||||
//
|
||||
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://godoc.org/google.golang.org/grpc#ClientConn.NewStream.
|
||||
type ProxyClient interface {
|
||||
GetComponentStates(ctx context.Context, in *milvuspb.GetComponentStatesRequest, opts ...grpc.CallOption) (*milvuspb.ComponentStates, error)
|
||||
GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
||||
InvalidateCollectionMetaCache(ctx context.Context, in *InvalidateCollMetaCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
GetDdChannel(ctx context.Context, in *internalpb.GetDdChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error)
|
||||
InvalidateCredentialCache(ctx context.Context, in *InvalidateCredCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
UpdateCredentialCache(ctx context.Context, in *UpdateCredCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
RefreshPolicyInfoCache(ctx context.Context, in *RefreshPolicyInfoCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
GetProxyMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error)
|
||||
SetRates(ctx context.Context, in *SetRatesRequest, opts ...grpc.CallOption) (*commonpb.Status, error)
|
||||
ListClientInfos(ctx context.Context, in *ListClientInfosRequest, opts ...grpc.CallOption) (*ListClientInfosResponse, error)
|
||||
}
|
||||
|
||||
type proxyClient struct {
|
||||
cc *grpc.ClientConn
|
||||
}
|
||||
|
||||
func NewProxyClient(cc *grpc.ClientConn) ProxyClient {
|
||||
return &proxyClient{cc}
|
||||
}
|
||||
|
||||
func (c *proxyClient) GetComponentStates(ctx context.Context, in *milvuspb.GetComponentStatesRequest, opts ...grpc.CallOption) (*milvuspb.ComponentStates, error) {
|
||||
out := new(milvuspb.ComponentStates)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/GetComponentStates", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) GetStatisticsChannel(ctx context.Context, in *internalpb.GetStatisticsChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
||||
out := new(milvuspb.StringResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/GetStatisticsChannel", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) InvalidateCollectionMetaCache(ctx context.Context, in *InvalidateCollMetaCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
||||
out := new(commonpb.Status)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/InvalidateCollectionMetaCache", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) GetDdChannel(ctx context.Context, in *internalpb.GetDdChannelRequest, opts ...grpc.CallOption) (*milvuspb.StringResponse, error) {
|
||||
out := new(milvuspb.StringResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/GetDdChannel", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) InvalidateCredentialCache(ctx context.Context, in *InvalidateCredCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
||||
out := new(commonpb.Status)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/InvalidateCredentialCache", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) UpdateCredentialCache(ctx context.Context, in *UpdateCredCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
||||
out := new(commonpb.Status)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/UpdateCredentialCache", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) RefreshPolicyInfoCache(ctx context.Context, in *RefreshPolicyInfoCacheRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
||||
out := new(commonpb.Status)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/RefreshPolicyInfoCache", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) GetProxyMetrics(ctx context.Context, in *milvuspb.GetMetricsRequest, opts ...grpc.CallOption) (*milvuspb.GetMetricsResponse, error) {
|
||||
out := new(milvuspb.GetMetricsResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/GetProxyMetrics", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) SetRates(ctx context.Context, in *SetRatesRequest, opts ...grpc.CallOption) (*commonpb.Status, error) {
|
||||
out := new(commonpb.Status)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/SetRates", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *proxyClient) ListClientInfos(ctx context.Context, in *ListClientInfosRequest, opts ...grpc.CallOption) (*ListClientInfosResponse, error) {
|
||||
out := new(ListClientInfosResponse)
|
||||
err := c.cc.Invoke(ctx, "/milvus.proto.proxy.Proxy/ListClientInfos", in, out, opts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// ProxyServer is the server API for Proxy service.
|
||||
type ProxyServer interface {
|
||||
GetComponentStates(context.Context, *milvuspb.GetComponentStatesRequest) (*milvuspb.ComponentStates, error)
|
||||
GetStatisticsChannel(context.Context, *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error)
|
||||
InvalidateCollectionMetaCache(context.Context, *InvalidateCollMetaCacheRequest) (*commonpb.Status, error)
|
||||
GetDdChannel(context.Context, *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error)
|
||||
InvalidateCredentialCache(context.Context, *InvalidateCredCacheRequest) (*commonpb.Status, error)
|
||||
UpdateCredentialCache(context.Context, *UpdateCredCacheRequest) (*commonpb.Status, error)
|
||||
RefreshPolicyInfoCache(context.Context, *RefreshPolicyInfoCacheRequest) (*commonpb.Status, error)
|
||||
GetProxyMetrics(context.Context, *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error)
|
||||
SetRates(context.Context, *SetRatesRequest) (*commonpb.Status, error)
|
||||
ListClientInfos(context.Context, *ListClientInfosRequest) (*ListClientInfosResponse, error)
|
||||
}
|
||||
|
||||
// UnimplementedProxyServer can be embedded to have forward compatible implementations.
|
||||
type UnimplementedProxyServer struct {
|
||||
}
|
||||
|
||||
func (*UnimplementedProxyServer) GetComponentStates(ctx context.Context, req *milvuspb.GetComponentStatesRequest) (*milvuspb.ComponentStates, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetComponentStates not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) GetStatisticsChannel(ctx context.Context, req *internalpb.GetStatisticsChannelRequest) (*milvuspb.StringResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetStatisticsChannel not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) InvalidateCollectionMetaCache(ctx context.Context, req *InvalidateCollMetaCacheRequest) (*commonpb.Status, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method InvalidateCollectionMetaCache not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) GetDdChannel(ctx context.Context, req *internalpb.GetDdChannelRequest) (*milvuspb.StringResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetDdChannel not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) InvalidateCredentialCache(ctx context.Context, req *InvalidateCredCacheRequest) (*commonpb.Status, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method InvalidateCredentialCache not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) UpdateCredentialCache(ctx context.Context, req *UpdateCredCacheRequest) (*commonpb.Status, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method UpdateCredentialCache not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) RefreshPolicyInfoCache(ctx context.Context, req *RefreshPolicyInfoCacheRequest) (*commonpb.Status, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method RefreshPolicyInfoCache not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) GetProxyMetrics(ctx context.Context, req *milvuspb.GetMetricsRequest) (*milvuspb.GetMetricsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method GetProxyMetrics not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) SetRates(ctx context.Context, req *SetRatesRequest) (*commonpb.Status, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method SetRates not implemented")
|
||||
}
|
||||
func (*UnimplementedProxyServer) ListClientInfos(ctx context.Context, req *ListClientInfosRequest) (*ListClientInfosResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method ListClientInfos not implemented")
|
||||
}
|
||||
|
||||
func RegisterProxyServer(s *grpc.Server, srv ProxyServer) {
|
||||
s.RegisterService(&_Proxy_serviceDesc, srv)
|
||||
}
|
||||
|
||||
func _Proxy_GetComponentStates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(milvuspb.GetComponentStatesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).GetComponentStates(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/GetComponentStates",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).GetComponentStates(ctx, req.(*milvuspb.GetComponentStatesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_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.(ProxyServer).GetStatisticsChannel(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/GetStatisticsChannel",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).GetStatisticsChannel(ctx, req.(*internalpb.GetStatisticsChannelRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_InvalidateCollectionMetaCache_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(InvalidateCollMetaCacheRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).InvalidateCollectionMetaCache(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/InvalidateCollectionMetaCache",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).InvalidateCollectionMetaCache(ctx, req.(*InvalidateCollMetaCacheRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_GetDdChannel_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(internalpb.GetDdChannelRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).GetDdChannel(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/GetDdChannel",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).GetDdChannel(ctx, req.(*internalpb.GetDdChannelRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_InvalidateCredentialCache_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(InvalidateCredCacheRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).InvalidateCredentialCache(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/InvalidateCredentialCache",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).InvalidateCredentialCache(ctx, req.(*InvalidateCredCacheRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_UpdateCredentialCache_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(UpdateCredCacheRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).UpdateCredentialCache(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/UpdateCredentialCache",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).UpdateCredentialCache(ctx, req.(*UpdateCredCacheRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_RefreshPolicyInfoCache_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(RefreshPolicyInfoCacheRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).RefreshPolicyInfoCache(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/RefreshPolicyInfoCache",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).RefreshPolicyInfoCache(ctx, req.(*RefreshPolicyInfoCacheRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_GetProxyMetrics_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.(ProxyServer).GetProxyMetrics(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/GetProxyMetrics",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).GetProxyMetrics(ctx, req.(*milvuspb.GetMetricsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_SetRates_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(SetRatesRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).SetRates(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/SetRates",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).SetRates(ctx, req.(*SetRatesRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _Proxy_ListClientInfos_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ListClientInfosRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ProxyServer).ListClientInfos(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: "/milvus.proto.proxy.Proxy/ListClientInfos",
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ProxyServer).ListClientInfos(ctx, req.(*ListClientInfosRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
var _Proxy_serviceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "milvus.proto.proxy.Proxy",
|
||||
HandlerType: (*ProxyServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "GetComponentStates",
|
||||
Handler: _Proxy_GetComponentStates_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetStatisticsChannel",
|
||||
Handler: _Proxy_GetStatisticsChannel_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "InvalidateCollectionMetaCache",
|
||||
Handler: _Proxy_InvalidateCollectionMetaCache_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetDdChannel",
|
||||
Handler: _Proxy_GetDdChannel_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "InvalidateCredentialCache",
|
||||
Handler: _Proxy_InvalidateCredentialCache_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "UpdateCredentialCache",
|
||||
Handler: _Proxy_UpdateCredentialCache_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "RefreshPolicyInfoCache",
|
||||
Handler: _Proxy_RefreshPolicyInfoCache_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "GetProxyMetrics",
|
||||
Handler: _Proxy_GetProxyMetrics_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "SetRates",
|
||||
Handler: _Proxy_SetRates_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "ListClientInfos",
|
||||
Handler: _Proxy_ListClientInfos_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "proxy.proto",
|
||||
}
|
File diff suppressed because it is too large
Load Diff
File diff suppressed because it is too large
Load Diff
|
@ -1,413 +0,0 @@
|
|||
// Code generated by protoc-gen-go. DO NOT EDIT.
|
||||
// source: segcore.proto
|
||||
|
||||
package segcorepb
|
||||
|
||||
import (
|
||||
fmt "fmt"
|
||||
proto "github.com/golang/protobuf/proto"
|
||||
commonpb "github.com/milvus-io/milvus-proto/go-api/v2/commonpb"
|
||||
schemapb "github.com/milvus-io/milvus-proto/go-api/v2/schemapb"
|
||||
math "math"
|
||||
)
|
||||
|
||||
// Reference imports to suppress errors if they are not otherwise used.
|
||||
var _ = proto.Marshal
|
||||
var _ = fmt.Errorf
|
||||
var _ = math.Inf
|
||||
|
||||
// This is a compile-time assertion to ensure that this generated file
|
||||
// is compatible with the proto package it is being compiled against.
|
||||
// A compilation error at this line likely means your copy of the
|
||||
// proto package needs to be updated.
|
||||
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package
|
||||
|
||||
type RetrieveResults struct {
|
||||
Ids *schemapb.IDs `protobuf:"bytes,1,opt,name=ids,proto3" json:"ids,omitempty"`
|
||||
Offset []int64 `protobuf:"varint,2,rep,packed,name=offset,proto3" json:"offset,omitempty"`
|
||||
FieldsData []*schemapb.FieldData `protobuf:"bytes,3,rep,name=fields_data,json=fieldsData,proto3" json:"fields_data,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *RetrieveResults) Reset() { *m = RetrieveResults{} }
|
||||
func (m *RetrieveResults) String() string { return proto.CompactTextString(m) }
|
||||
func (*RetrieveResults) ProtoMessage() {}
|
||||
func (*RetrieveResults) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{0}
|
||||
}
|
||||
|
||||
func (m *RetrieveResults) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_RetrieveResults.Unmarshal(m, b)
|
||||
}
|
||||
func (m *RetrieveResults) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_RetrieveResults.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *RetrieveResults) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_RetrieveResults.Merge(m, src)
|
||||
}
|
||||
func (m *RetrieveResults) XXX_Size() int {
|
||||
return xxx_messageInfo_RetrieveResults.Size(m)
|
||||
}
|
||||
func (m *RetrieveResults) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_RetrieveResults.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_RetrieveResults proto.InternalMessageInfo
|
||||
|
||||
func (m *RetrieveResults) GetIds() *schemapb.IDs {
|
||||
if m != nil {
|
||||
return m.Ids
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *RetrieveResults) GetOffset() []int64 {
|
||||
if m != nil {
|
||||
return m.Offset
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *RetrieveResults) GetFieldsData() []*schemapb.FieldData {
|
||||
if m != nil {
|
||||
return m.FieldsData
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type LoadFieldMeta struct {
|
||||
MinTimestamp int64 `protobuf:"varint,1,opt,name=min_timestamp,json=minTimestamp,proto3" json:"min_timestamp,omitempty"`
|
||||
MaxTimestamp int64 `protobuf:"varint,2,opt,name=max_timestamp,json=maxTimestamp,proto3" json:"max_timestamp,omitempty"`
|
||||
RowCount int64 `protobuf:"varint,3,opt,name=row_count,json=rowCount,proto3" json:"row_count,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LoadFieldMeta) Reset() { *m = LoadFieldMeta{} }
|
||||
func (m *LoadFieldMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*LoadFieldMeta) ProtoMessage() {}
|
||||
func (*LoadFieldMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{1}
|
||||
}
|
||||
|
||||
func (m *LoadFieldMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LoadFieldMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LoadFieldMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LoadFieldMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *LoadFieldMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LoadFieldMeta.Merge(m, src)
|
||||
}
|
||||
func (m *LoadFieldMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_LoadFieldMeta.Size(m)
|
||||
}
|
||||
func (m *LoadFieldMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LoadFieldMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LoadFieldMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *LoadFieldMeta) GetMinTimestamp() int64 {
|
||||
if m != nil {
|
||||
return m.MinTimestamp
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *LoadFieldMeta) GetMaxTimestamp() int64 {
|
||||
if m != nil {
|
||||
return m.MaxTimestamp
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *LoadFieldMeta) GetRowCount() int64 {
|
||||
if m != nil {
|
||||
return m.RowCount
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type LoadSegmentMeta struct {
|
||||
// TODOs
|
||||
Metas []*LoadFieldMeta `protobuf:"bytes,1,rep,name=metas,proto3" json:"metas,omitempty"`
|
||||
TotalSize int64 `protobuf:"varint,2,opt,name=total_size,json=totalSize,proto3" json:"total_size,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *LoadSegmentMeta) Reset() { *m = LoadSegmentMeta{} }
|
||||
func (m *LoadSegmentMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*LoadSegmentMeta) ProtoMessage() {}
|
||||
func (*LoadSegmentMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{2}
|
||||
}
|
||||
|
||||
func (m *LoadSegmentMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_LoadSegmentMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *LoadSegmentMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_LoadSegmentMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *LoadSegmentMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_LoadSegmentMeta.Merge(m, src)
|
||||
}
|
||||
func (m *LoadSegmentMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_LoadSegmentMeta.Size(m)
|
||||
}
|
||||
func (m *LoadSegmentMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_LoadSegmentMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_LoadSegmentMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *LoadSegmentMeta) GetMetas() []*LoadFieldMeta {
|
||||
if m != nil {
|
||||
return m.Metas
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *LoadSegmentMeta) GetTotalSize() int64 {
|
||||
if m != nil {
|
||||
return m.TotalSize
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type InsertRecord struct {
|
||||
FieldsData []*schemapb.FieldData `protobuf:"bytes,1,rep,name=fields_data,json=fieldsData,proto3" json:"fields_data,omitempty"`
|
||||
NumRows int64 `protobuf:"varint,2,opt,name=num_rows,json=numRows,proto3" json:"num_rows,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *InsertRecord) Reset() { *m = InsertRecord{} }
|
||||
func (m *InsertRecord) String() string { return proto.CompactTextString(m) }
|
||||
func (*InsertRecord) ProtoMessage() {}
|
||||
func (*InsertRecord) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{3}
|
||||
}
|
||||
|
||||
func (m *InsertRecord) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_InsertRecord.Unmarshal(m, b)
|
||||
}
|
||||
func (m *InsertRecord) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_InsertRecord.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *InsertRecord) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_InsertRecord.Merge(m, src)
|
||||
}
|
||||
func (m *InsertRecord) XXX_Size() int {
|
||||
return xxx_messageInfo_InsertRecord.Size(m)
|
||||
}
|
||||
func (m *InsertRecord) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_InsertRecord.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_InsertRecord proto.InternalMessageInfo
|
||||
|
||||
func (m *InsertRecord) GetFieldsData() []*schemapb.FieldData {
|
||||
if m != nil {
|
||||
return m.FieldsData
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *InsertRecord) GetNumRows() int64 {
|
||||
if m != nil {
|
||||
return m.NumRows
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
type FieldIndexMeta struct {
|
||||
FieldID int64 `protobuf:"varint,1,opt,name=fieldID,proto3" json:"fieldID,omitempty"`
|
||||
CollectionID int64 `protobuf:"varint,2,opt,name=collectionID,proto3" json:"collectionID,omitempty"`
|
||||
IndexName string `protobuf:"bytes,3,opt,name=index_name,json=indexName,proto3" json:"index_name,omitempty"`
|
||||
TypeParams []*commonpb.KeyValuePair `protobuf:"bytes,4,rep,name=type_params,json=typeParams,proto3" json:"type_params,omitempty"`
|
||||
IndexParams []*commonpb.KeyValuePair `protobuf:"bytes,5,rep,name=index_params,json=indexParams,proto3" json:"index_params,omitempty"`
|
||||
IsAutoIndex bool `protobuf:"varint,6,opt,name=is_auto_index,json=isAutoIndex,proto3" json:"is_auto_index,omitempty"`
|
||||
UserIndexParams []*commonpb.KeyValuePair `protobuf:"bytes,7,rep,name=user_index_params,json=userIndexParams,proto3" json:"user_index_params,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) Reset() { *m = FieldIndexMeta{} }
|
||||
func (m *FieldIndexMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*FieldIndexMeta) ProtoMessage() {}
|
||||
func (*FieldIndexMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{4}
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_FieldIndexMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *FieldIndexMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_FieldIndexMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *FieldIndexMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_FieldIndexMeta.Merge(m, src)
|
||||
}
|
||||
func (m *FieldIndexMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_FieldIndexMeta.Size(m)
|
||||
}
|
||||
func (m *FieldIndexMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_FieldIndexMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_FieldIndexMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *FieldIndexMeta) GetFieldID() int64 {
|
||||
if m != nil {
|
||||
return m.FieldID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetCollectionID() int64 {
|
||||
if m != nil {
|
||||
return m.CollectionID
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetIndexName() string {
|
||||
if m != nil {
|
||||
return m.IndexName
|
||||
}
|
||||
return ""
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetTypeParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.TypeParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetIndexParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.IndexParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetIsAutoIndex() bool {
|
||||
if m != nil {
|
||||
return m.IsAutoIndex
|
||||
}
|
||||
return false
|
||||
}
|
||||
|
||||
func (m *FieldIndexMeta) GetUserIndexParams() []*commonpb.KeyValuePair {
|
||||
if m != nil {
|
||||
return m.UserIndexParams
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
type CollectionIndexMeta struct {
|
||||
MaxIndexRowCount int64 `protobuf:"varint,1,opt,name=maxIndexRowCount,proto3" json:"maxIndexRowCount,omitempty"`
|
||||
IndexMetas []*FieldIndexMeta `protobuf:"bytes,2,rep,name=index_metas,json=indexMetas,proto3" json:"index_metas,omitempty"`
|
||||
XXX_NoUnkeyedLiteral struct{} `json:"-"`
|
||||
XXX_unrecognized []byte `json:"-"`
|
||||
XXX_sizecache int32 `json:"-"`
|
||||
}
|
||||
|
||||
func (m *CollectionIndexMeta) Reset() { *m = CollectionIndexMeta{} }
|
||||
func (m *CollectionIndexMeta) String() string { return proto.CompactTextString(m) }
|
||||
func (*CollectionIndexMeta) ProtoMessage() {}
|
||||
func (*CollectionIndexMeta) Descriptor() ([]byte, []int) {
|
||||
return fileDescriptor_1d79fce784797357, []int{5}
|
||||
}
|
||||
|
||||
func (m *CollectionIndexMeta) XXX_Unmarshal(b []byte) error {
|
||||
return xxx_messageInfo_CollectionIndexMeta.Unmarshal(m, b)
|
||||
}
|
||||
func (m *CollectionIndexMeta) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
|
||||
return xxx_messageInfo_CollectionIndexMeta.Marshal(b, m, deterministic)
|
||||
}
|
||||
func (m *CollectionIndexMeta) XXX_Merge(src proto.Message) {
|
||||
xxx_messageInfo_CollectionIndexMeta.Merge(m, src)
|
||||
}
|
||||
func (m *CollectionIndexMeta) XXX_Size() int {
|
||||
return xxx_messageInfo_CollectionIndexMeta.Size(m)
|
||||
}
|
||||
func (m *CollectionIndexMeta) XXX_DiscardUnknown() {
|
||||
xxx_messageInfo_CollectionIndexMeta.DiscardUnknown(m)
|
||||
}
|
||||
|
||||
var xxx_messageInfo_CollectionIndexMeta proto.InternalMessageInfo
|
||||
|
||||
func (m *CollectionIndexMeta) GetMaxIndexRowCount() int64 {
|
||||
if m != nil {
|
||||
return m.MaxIndexRowCount
|
||||
}
|
||||
return 0
|
||||
}
|
||||
|
||||
func (m *CollectionIndexMeta) GetIndexMetas() []*FieldIndexMeta {
|
||||
if m != nil {
|
||||
return m.IndexMetas
|
||||
}
|
||||
return nil
|
||||
}
|
||||
|
||||
func init() {
|
||||
proto.RegisterType((*RetrieveResults)(nil), "milvus.proto.segcore.RetrieveResults")
|
||||
proto.RegisterType((*LoadFieldMeta)(nil), "milvus.proto.segcore.LoadFieldMeta")
|
||||
proto.RegisterType((*LoadSegmentMeta)(nil), "milvus.proto.segcore.LoadSegmentMeta")
|
||||
proto.RegisterType((*InsertRecord)(nil), "milvus.proto.segcore.InsertRecord")
|
||||
proto.RegisterType((*FieldIndexMeta)(nil), "milvus.proto.segcore.FieldIndexMeta")
|
||||
proto.RegisterType((*CollectionIndexMeta)(nil), "milvus.proto.segcore.CollectionIndexMeta")
|
||||
}
|
||||
|
||||
func init() { proto.RegisterFile("segcore.proto", fileDescriptor_1d79fce784797357) }
|
||||
|
||||
var fileDescriptor_1d79fce784797357 = []byte{
|
||||
// 564 bytes of a gzipped FileDescriptorProto
|
||||
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x52, 0x5d, 0x6f, 0xd3, 0x30,
|
||||
0x14, 0x55, 0x1b, 0xf6, 0xd1, 0x9b, 0x94, 0x81, 0x41, 0x28, 0x0c, 0x81, 0x4a, 0xc6, 0x43, 0x35,
|
||||
0x89, 0x56, 0x1a, 0x08, 0x89, 0x27, 0xc4, 0x56, 0x90, 0x22, 0x18, 0x9a, 0x3c, 0xc4, 0x03, 0x2f,
|
||||
0x91, 0x97, 0xdc, 0x6d, 0x86, 0xd8, 0xae, 0x6c, 0x67, 0xed, 0xf6, 0x0b, 0xf8, 0x05, 0xfc, 0x48,
|
||||
0x7e, 0x05, 0xb2, 0xe3, 0xb1, 0x15, 0xfa, 0x30, 0xde, 0x7c, 0x4f, 0xee, 0x39, 0xe7, 0xde, 0x93,
|
||||
0x0b, 0x7d, 0x83, 0x27, 0xa5, 0xd2, 0x38, 0x9a, 0x6a, 0x65, 0x15, 0xb9, 0x2f, 0x78, 0x7d, 0xd6,
|
||||
0x98, 0xb6, 0x1a, 0x85, 0x6f, 0x9b, 0x89, 0x29, 0x4f, 0x51, 0xb0, 0x16, 0xdd, 0x4c, 0x4a, 0x25,
|
||||
0x84, 0x92, 0x6d, 0x95, 0xfd, 0xec, 0xc0, 0x06, 0x45, 0xab, 0x39, 0x9e, 0x21, 0x45, 0xd3, 0xd4,
|
||||
0xd6, 0x90, 0x6d, 0x88, 0x78, 0x65, 0xd2, 0xce, 0xa0, 0x33, 0x8c, 0x77, 0xd2, 0xd1, 0xa2, 0x66,
|
||||
0x2b, 0x95, 0x4f, 0x0c, 0x75, 0x4d, 0xe4, 0x01, 0xac, 0xaa, 0xe3, 0x63, 0x83, 0x36, 0xed, 0x0e,
|
||||
0xa2, 0x61, 0x44, 0x43, 0x45, 0xde, 0x40, 0x7c, 0xcc, 0xb1, 0xae, 0x4c, 0x51, 0x31, 0xcb, 0xd2,
|
||||
0x68, 0x10, 0x0d, 0xe3, 0x9d, 0x27, 0x4b, 0xb5, 0xde, 0xbb, 0xbe, 0x09, 0xb3, 0x8c, 0x42, 0x4b,
|
||||
0x71, 0xef, 0xec, 0x0c, 0xfa, 0x1f, 0x15, 0xab, 0xfc, 0xc7, 0x7d, 0xb4, 0x8c, 0x6c, 0x41, 0x5f,
|
||||
0x70, 0x59, 0x58, 0x2e, 0xd0, 0x58, 0x26, 0xa6, 0x7e, 0xbe, 0x88, 0x26, 0x82, 0xcb, 0xcf, 0x97,
|
||||
0x98, 0x6f, 0x62, 0xf3, 0x6b, 0x4d, 0xdd, 0xd0, 0xc4, 0xe6, 0x57, 0x4d, 0x8f, 0xa0, 0xa7, 0xd5,
|
||||
0xac, 0x28, 0x55, 0x23, 0x6d, 0x1a, 0xf9, 0x86, 0x75, 0xad, 0x66, 0x7b, 0xae, 0xce, 0xbe, 0xc3,
|
||||
0x86, 0xf3, 0x3d, 0xc4, 0x13, 0x81, 0xd2, 0x7a, 0xe7, 0xd7, 0xb0, 0x22, 0xd0, 0x32, 0x97, 0x88,
|
||||
0xdb, 0x62, 0x6b, 0xb4, 0x2c, 0xe5, 0xd1, 0xc2, 0xb4, 0xb4, 0x65, 0x90, 0xc7, 0x00, 0x56, 0x59,
|
||||
0x56, 0x17, 0x86, 0x5f, 0x60, 0x18, 0xa6, 0xe7, 0x91, 0x43, 0x7e, 0x81, 0xd9, 0x37, 0x48, 0x72,
|
||||
0x69, 0x50, 0x5b, 0x8a, 0xa5, 0xd2, 0xd5, 0xdf, 0xa9, 0x75, 0xfe, 0x37, 0x35, 0xf2, 0x10, 0xd6,
|
||||
0x65, 0x23, 0x0a, 0xad, 0x66, 0x26, 0xb8, 0xad, 0xc9, 0x46, 0x50, 0x35, 0x33, 0xd9, 0xaf, 0x2e,
|
||||
0xdc, 0xf6, 0xa4, 0x5c, 0x56, 0x38, 0xf7, 0x8b, 0xa5, 0xb0, 0xe6, 0xb9, 0xf9, 0x24, 0x84, 0x79,
|
||||
0x59, 0x92, 0x0c, 0x92, 0x52, 0xd5, 0x35, 0x96, 0x96, 0x2b, 0x99, 0x4f, 0x2e, 0x63, 0xbc, 0x8e,
|
||||
0xb9, 0xdd, 0xb8, 0x93, 0x2a, 0x24, 0x13, 0xe8, 0x73, 0xec, 0xd1, 0x9e, 0x47, 0x3e, 0x31, 0x81,
|
||||
0x64, 0x17, 0x62, 0x7b, 0x3e, 0xc5, 0x62, 0xca, 0x34, 0x13, 0x26, 0xbd, 0xe5, 0x77, 0x79, 0xba,
|
||||
0xb8, 0x4b, 0x38, 0xc5, 0x0f, 0x78, 0xfe, 0x85, 0xd5, 0x0d, 0x1e, 0x30, 0xae, 0x29, 0x38, 0xd6,
|
||||
0x81, 0x27, 0x91, 0x09, 0x24, 0xad, 0x45, 0x10, 0x59, 0xb9, 0xa9, 0x48, 0xec, 0x69, 0x41, 0x25,
|
||||
0x83, 0x3e, 0x37, 0x05, 0x6b, 0xac, 0x2a, 0x3c, 0x9c, 0xae, 0x0e, 0x3a, 0xc3, 0x75, 0x1a, 0x73,
|
||||
0xf3, 0xb6, 0xb1, 0xca, 0xc7, 0x41, 0xf6, 0xe1, 0x6e, 0x63, 0x50, 0x17, 0x0b, 0x76, 0x6b, 0x37,
|
||||
0xb5, 0xdb, 0x70, 0xdc, 0xfc, 0xca, 0x32, 0xfb, 0xd1, 0x81, 0x7b, 0x7b, 0x57, 0x61, 0xfd, 0x49,
|
||||
0x7c, 0x1b, 0xee, 0x08, 0x36, 0xf7, 0x35, 0x0d, 0x17, 0x17, 0xa2, 0xff, 0x07, 0x27, 0xef, 0xa0,
|
||||
0xdd, 0xa2, 0x68, 0x8f, 0xaf, 0xeb, 0x87, 0x79, 0xb6, 0xfc, 0xf8, 0x16, 0x7f, 0x2c, 0x6d, 0x7f,
|
||||
0x8c, 0x7b, 0x9a, 0xdd, 0x57, 0x5f, 0x5f, 0x9e, 0x70, 0x7b, 0xda, 0x1c, 0xb9, 0xc9, 0xc7, 0x2d,
|
||||
0xfb, 0x39, 0x57, 0xe1, 0x35, 0xe6, 0xd2, 0xa2, 0x96, 0xac, 0x1e, 0x7b, 0xc1, 0x71, 0x10, 0x9c,
|
||||
0x1e, 0x1d, 0xad, 0x7a, 0xe0, 0xc5, 0xef, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdf, 0x46, 0x25, 0x42,
|
||||
0x63, 0x04, 0x00, 0x00,
|
||||
}
|
Loading…
Reference in New Issue