mirror of
https://gitee.com/milvus-io/milvus.git
synced 2026-01-03 09:22:30 +08:00
* [skip ci] Remove ProxyService Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Change helm branch Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com> * Fix bug: paramstable crashed Signed-off-by: zhenshan.cao <zhenshan.cao@zilliz.com>
23 lines
724 B
Protocol Buffer
23 lines
724 B
Protocol Buffer
syntax = "proto3";
|
|
package milvus.proto.proxy;
|
|
|
|
option go_package = "github.com/milvus-io/milvus/internal/proto/proxypb";
|
|
|
|
import "common.proto";
|
|
import "internal.proto";
|
|
import "milvus.proto";
|
|
|
|
service ProxyNodeService {
|
|
rpc GetComponentStates(internal.GetComponentStatesRequest) returns (internal.ComponentStates) {}
|
|
rpc GetStatisticsChannel(internal.GetStatisticsChannelRequest) returns(milvus.StringResponse){}
|
|
|
|
rpc InvalidateCollectionMetaCache(InvalidateCollMetaCacheRequest) returns (common.Status) {}
|
|
rpc GetDdChannel(internal.GetDdChannelRequest) returns (milvus.StringResponse) {}
|
|
}
|
|
|
|
message InvalidateCollMetaCacheRequest {
|
|
common.MsgBase base = 1;
|
|
string db_name = 2;
|
|
string collection_name = 3;
|
|
}
|