mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-12-01 11:29:48 +08:00
5cdd6ca251
Signed-off-by: bigsheeper <yihao.dai@zilliz.com> Signed-off-by: bigsheeper <yihao.dai@zilliz.com>
54 lines
1.5 KiB
Protocol Buffer
54 lines
1.5 KiB
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 InvalidateCredentialCache(InvalidateCredCacheRequest) returns (common.Status) {}
|
|
rpc UpdateCredentialCache(UpdateCredCacheRequest) returns (common.Status) {}
|
|
|
|
rpc RefreshPolicyInfoCache(RefreshPolicyInfoCacheRequest) returns (common.Status) {}
|
|
rpc GetProxyMetrics(milvus.GetMetricsRequest) returns (milvus.GetMetricsResponse) {}
|
|
rpc SetRates(SetRatesRequest) returns (common.Status) {}
|
|
}
|
|
|
|
message InvalidateCollMetaCacheRequest {
|
|
common.MsgBase base = 1;
|
|
string db_name = 2;
|
|
string collection_name = 3;
|
|
int64 collectionID = 4;
|
|
}
|
|
|
|
message InvalidateCredCacheRequest {
|
|
common.MsgBase base = 1;
|
|
string username = 2;
|
|
}
|
|
|
|
message UpdateCredCacheRequest {
|
|
common.MsgBase base = 1;
|
|
string username = 2;
|
|
// password stored in cache
|
|
string password = 3;
|
|
}
|
|
|
|
message RefreshPolicyInfoCacheRequest {
|
|
common.MsgBase base = 1;
|
|
int32 opType = 2;
|
|
string opKey = 3;
|
|
}
|
|
|
|
message SetRatesRequest {
|
|
common.MsgBase base = 1;
|
|
repeated internal.Rate rates = 2;
|
|
}
|