mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 02:48:45 +08:00
d5f4ee6f44
* rename proto proxy_service to proxy Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * rename proto index_service to index_coord Signed-off-by: yudong.cai <yudong.cai@zilliz.com> * rename proto master to root_coord Signed-off-by: yudong.cai <yudong.cai@zilliz.com>
31 lines
918 B
Protocol Buffer
31 lines
918 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 Proxy {
|
|
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) {}
|
|
|
|
rpc ReleaseDQLMessageStream(ReleaseDQLMessageStreamRequest) returns (common.Status) {}
|
|
}
|
|
|
|
message InvalidateCollMetaCacheRequest {
|
|
common.MsgBase base = 1;
|
|
string db_name = 2;
|
|
string collection_name = 3;
|
|
}
|
|
|
|
message ReleaseDQLMessageStreamRequest {
|
|
common.MsgBase base = 1;
|
|
int64 dbID = 2;
|
|
int64 collectionID = 3;
|
|
}
|