2021-01-14 14:24:14 +08:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package milvus.proto.query;
|
|
|
|
|
2021-04-22 14:45:57 +08:00
|
|
|
option go_package = "github.com/milvus-io/milvus/internal/proto/querypb";
|
2021-01-14 14:24:14 +08:00
|
|
|
|
|
|
|
import "common.proto";
|
2021-01-22 14:28:06 +08:00
|
|
|
import "milvus.proto";
|
2021-01-14 14:24:14 +08:00
|
|
|
import "internal.proto";
|
2021-02-06 17:37:10 +08:00
|
|
|
import "schema.proto";
|
2021-06-22 10:42:07 +08:00
|
|
|
import "data_coord.proto";
|
2021-11-17 09:47:12 +08:00
|
|
|
import "index_coord.proto";
|
2021-01-14 14:24:14 +08:00
|
|
|
|
2021-06-22 16:44:09 +08:00
|
|
|
service QueryCoord {
|
2021-03-12 14:22:09 +08:00
|
|
|
rpc GetComponentStates(internal.GetComponentStatesRequest) returns (internal.ComponentStates) {}
|
|
|
|
rpc GetTimeTickChannel(internal.GetTimeTickChannelRequest) returns(milvus.StringResponse) {}
|
|
|
|
rpc GetStatisticsChannel(internal.GetStatisticsChannelRequest) returns(milvus.StringResponse){}
|
|
|
|
|
|
|
|
rpc ShowCollections(ShowCollectionsRequest) returns (ShowCollectionsResponse) {}
|
|
|
|
rpc ShowPartitions(ShowPartitionsRequest) returns (ShowPartitionsResponse) {}
|
|
|
|
|
|
|
|
rpc LoadPartitions(LoadPartitionsRequest) returns (common.Status) {}
|
|
|
|
rpc ReleasePartitions(ReleasePartitionsRequest) returns (common.Status) {}
|
|
|
|
rpc LoadCollection(LoadCollectionRequest) returns (common.Status) {}
|
|
|
|
rpc ReleaseCollection(ReleaseCollectionRequest) returns (common.Status) {}
|
|
|
|
|
|
|
|
rpc CreateQueryChannel(CreateQueryChannelRequest) returns (CreateQueryChannelResponse) {}
|
|
|
|
rpc GetPartitionStates(GetPartitionStatesRequest) returns (GetPartitionStatesResponse) {}
|
|
|
|
rpc GetSegmentInfo(GetSegmentInfoRequest) returns (GetSegmentInfoResponse) {}
|
2021-11-06 16:54:59 +08:00
|
|
|
rpc LoadBalance(LoadBalanceRequest) returns (common.Status) {}
|
2021-08-17 10:06:11 +08:00
|
|
|
|
|
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
|
|
rpc GetMetrics(milvus.GetMetricsRequest) returns (milvus.GetMetricsResponse) {}
|
2021-03-12 14:22:09 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
service QueryNode {
|
|
|
|
rpc GetComponentStates(internal.GetComponentStatesRequest) returns (internal.ComponentStates) {}
|
|
|
|
rpc GetTimeTickChannel(internal.GetTimeTickChannelRequest) returns(milvus.StringResponse) {}
|
|
|
|
rpc GetStatisticsChannel(internal.GetStatisticsChannelRequest) returns(milvus.StringResponse){}
|
|
|
|
|
|
|
|
rpc AddQueryChannel(AddQueryChannelRequest) returns (common.Status) {}
|
|
|
|
rpc RemoveQueryChannel(RemoveQueryChannelRequest) returns (common.Status) {}
|
|
|
|
rpc WatchDmChannels(WatchDmChannelsRequest) returns (common.Status) {}
|
2021-11-05 14:47:19 +08:00
|
|
|
rpc WatchDeltaChannels(WatchDeltaChannelsRequest) returns (common.Status) {}
|
2021-03-12 14:22:09 +08:00
|
|
|
rpc LoadSegments(LoadSegmentsRequest) returns (common.Status) {}
|
|
|
|
rpc ReleaseCollection(ReleaseCollectionRequest) returns (common.Status) {}
|
|
|
|
rpc ReleasePartitions(ReleasePartitionsRequest) returns (common.Status) {}
|
|
|
|
rpc ReleaseSegments(ReleaseSegmentsRequest) returns (common.Status) {}
|
|
|
|
rpc GetSegmentInfo(GetSegmentInfoRequest) returns (GetSegmentInfoResponse) {}
|
2021-08-17 10:06:11 +08:00
|
|
|
|
|
|
|
// https://wiki.lfaidata.foundation/display/MIL/MEP+8+--+Add+metrics+for+proxy
|
|
|
|
rpc GetMetrics(milvus.GetMetricsRequest) returns (milvus.GetMetricsResponse) {}
|
2021-03-12 14:22:09 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
//--------------------QueryCoord grpc request and response proto------------------
|
2021-03-12 14:22:09 +08:00
|
|
|
message ShowCollectionsRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-09-22 20:04:13 +08:00
|
|
|
// Not useful for now
|
2021-01-16 15:31:10 +08:00
|
|
|
int64 dbID = 2;
|
2021-08-02 22:39:25 +08:00
|
|
|
repeated int64 collectionIDs = 3;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message ShowCollectionsResponse {
|
2021-01-16 15:31:10 +08:00
|
|
|
common.Status status = 1;
|
|
|
|
repeated int64 collectionIDs = 2;
|
2021-08-02 22:39:25 +08:00
|
|
|
repeated int64 inMemory_percentages = 3;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message ShowPartitionsRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
2021-08-02 22:39:25 +08:00
|
|
|
repeated int64 partitionIDs = 4;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message ShowPartitionsResponse {
|
|
|
|
common.Status status = 1;
|
|
|
|
repeated int64 partitionIDs = 2;
|
2021-08-02 22:39:25 +08:00
|
|
|
repeated int64 inMemory_percentages = 3;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
2021-01-14 14:24:14 +08:00
|
|
|
message LoadCollectionRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-16 15:31:10 +08:00
|
|
|
int64 dbID = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 collectionID = 3;
|
2021-02-06 17:37:10 +08:00
|
|
|
schema.CollectionSchema schema = 4;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message ReleaseCollectionRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-16 15:31:10 +08:00
|
|
|
int64 dbID = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
int64 collectionID = 3;
|
2021-06-19 11:45:09 +08:00
|
|
|
int64 nodeID = 4;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message LoadPartitionsRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-01-16 15:31:10 +08:00
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
2021-06-15 12:41:40 +08:00
|
|
|
repeated int64 partitionIDs = 4;
|
|
|
|
schema.CollectionSchema schema = 5;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message ReleasePartitionsRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
repeated int64 partitionIDs = 4;
|
2021-06-19 11:45:09 +08:00
|
|
|
int64 nodeID = 5;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message CreateQueryChannelRequest {
|
|
|
|
int64 collectionID = 1;
|
2021-06-18 10:33:58 +08:00
|
|
|
int64 proxyID = 2;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message CreateQueryChannelResponse {
|
2021-01-16 15:31:10 +08:00
|
|
|
common.Status status = 1;
|
2021-12-15 16:53:12 +08:00
|
|
|
string query_channel = 2;
|
|
|
|
string query_result_channel = 3;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message GetPartitionStatesRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
int64 dbID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
repeated int64 partitionIDs = 4;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message GetPartitionStatesResponse {
|
2021-01-16 15:31:10 +08:00
|
|
|
common.Status status = 1;
|
|
|
|
repeated PartitionStates partition_descriptions = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message GetSegmentInfoRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-10-20 19:47:35 +08:00
|
|
|
repeated int64 segmentIDs = 2; // deprecated
|
|
|
|
int64 collectionID = 3;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message GetSegmentInfoResponse {
|
2021-01-16 15:31:10 +08:00
|
|
|
common.Status status = 1;
|
2021-06-15 12:41:40 +08:00
|
|
|
repeated SegmentInfo infos = 2;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
//-----------------query node grpc request and response proto----------------
|
2021-03-12 14:22:09 +08:00
|
|
|
message AddQueryChannelRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-06-15 12:41:40 +08:00
|
|
|
int64 nodeID = 2;
|
|
|
|
int64 collectionID = 3;
|
2021-12-15 16:53:12 +08:00
|
|
|
string query_channel = 4;
|
|
|
|
string query_result_channel = 5;
|
2021-10-11 18:48:29 +08:00
|
|
|
repeated int64 global_sealed_segmentID = 6;
|
|
|
|
internal.MsgPosition seek_position = 7;
|
2021-10-15 20:35:05 +08:00
|
|
|
repeated SegmentInfo global_sealed_segments = 8;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message RemoveQueryChannelRequest {
|
2021-06-15 12:41:40 +08:00
|
|
|
common.MsgBase base = 1;
|
|
|
|
int64 nodeID = 2;
|
|
|
|
int64 collectionID = 3;
|
2021-12-15 16:53:12 +08:00
|
|
|
string query_channel = 4;
|
|
|
|
string query_result_channel = 5;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message WatchDmChannelsRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-06-15 12:41:40 +08:00
|
|
|
int64 nodeID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
int64 partitionID = 4;
|
2021-06-16 11:09:56 +08:00
|
|
|
repeated data.VchannelInfo infos = 5;
|
2021-06-15 12:41:40 +08:00
|
|
|
schema.CollectionSchema schema = 6;
|
2021-06-16 11:09:56 +08:00
|
|
|
repeated data.SegmentInfo exclude_infos = 7;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
2021-11-05 14:47:19 +08:00
|
|
|
message WatchDeltaChannelsRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
int64 nodeID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
repeated data.VchannelInfo infos = 4;
|
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message SegmentLoadInfo {
|
|
|
|
int64 segmentID = 1;
|
|
|
|
int64 partitionID = 2;
|
|
|
|
int64 collectionID = 3;
|
|
|
|
int64 dbID = 4;
|
|
|
|
int64 flush_time = 5;
|
2021-06-16 11:09:56 +08:00
|
|
|
repeated data.FieldBinlog binlog_paths = 6;
|
2021-09-07 11:35:18 +08:00
|
|
|
int64 num_of_rows = 7;
|
2021-10-22 14:31:13 +08:00
|
|
|
repeated data.FieldBinlog statslogs = 8;
|
|
|
|
repeated data.DeltaLogInfo deltalogs = 9;
|
2021-11-08 21:00:02 +08:00
|
|
|
repeated int64 compactionFrom = 10; // segmentIDs compacted from
|
2021-11-17 09:47:12 +08:00
|
|
|
bool enable_index = 11;
|
|
|
|
repeated index.IndexFilePathInfo index_path_infos = 12;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message LoadSegmentsRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-10-22 19:07:15 +08:00
|
|
|
int64 dst_nodeID = 2;
|
2021-06-15 12:41:40 +08:00
|
|
|
repeated SegmentLoadInfo infos = 3;
|
|
|
|
schema.CollectionSchema schema = 4;
|
2021-12-15 16:53:12 +08:00
|
|
|
int64 source_nodeID = 5;
|
|
|
|
int64 collectionID = 6;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-03-12 14:22:09 +08:00
|
|
|
message ReleaseSegmentsRequest {
|
2021-01-16 15:06:19 +08:00
|
|
|
common.MsgBase base = 1;
|
2021-06-15 12:41:40 +08:00
|
|
|
int64 nodeID = 2;
|
2021-09-22 20:06:09 +08:00
|
|
|
// Not useful for now
|
2021-06-15 12:41:40 +08:00
|
|
|
int64 dbID = 3;
|
|
|
|
int64 collectionID = 4;
|
|
|
|
repeated int64 partitionIDs = 5;
|
|
|
|
repeated int64 segmentIDs = 6;
|
2021-01-14 14:24:14 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
//----------------request auto triggered by QueryCoord-----------------
|
|
|
|
message HandoffSegmentsRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
repeated SegmentInfo segmentInfos = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message LoadBalanceRequest {
|
|
|
|
common.MsgBase base = 1;
|
|
|
|
repeated int64 source_nodeIDs = 2;
|
|
|
|
TriggerCondition balance_reason = 3;
|
|
|
|
repeated int64 dst_nodeIDs = 4;
|
|
|
|
repeated int64 sealed_segmentIDs = 5;
|
|
|
|
}
|
|
|
|
|
|
|
|
//-------------------- internal meta proto------------------
|
|
|
|
enum PartitionState {
|
|
|
|
NotExist = 0;
|
|
|
|
NotPresent = 1;
|
|
|
|
OnDisk = 2;
|
|
|
|
PartialInMemory = 3;
|
|
|
|
InMemory = 4;
|
|
|
|
PartialInGPU = 5;
|
|
|
|
InGPU = 6;
|
|
|
|
}
|
|
|
|
|
|
|
|
enum TriggerCondition {
|
|
|
|
UnKnowCondition = 0;
|
|
|
|
Handoff = 1;
|
|
|
|
LoadBalance = 2;
|
|
|
|
GrpcRequest = 3;
|
|
|
|
NodeDown = 4;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
2021-08-02 22:39:25 +08:00
|
|
|
enum LoadType {
|
2021-12-15 16:53:12 +08:00
|
|
|
UnKnowType = 0;
|
|
|
|
LoadPartition = 1;
|
|
|
|
loadCollection = 2;
|
2021-08-02 22:39:25 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
message DmChannelWatchInfo {
|
|
|
|
int64 collectionID = 1;
|
|
|
|
repeated string channelIDs = 2; // will deprecate
|
|
|
|
string dmChannel = 3;
|
|
|
|
int64 nodeID_loaded = 4;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
message QueryChannelInfo {
|
|
|
|
int64 collectionID = 1;
|
2021-12-15 16:53:12 +08:00
|
|
|
string query_channel = 2;
|
|
|
|
string query_result_channel = 3;
|
2021-10-22 19:07:15 +08:00
|
|
|
repeated SegmentInfo global_sealed_segments = 4;
|
|
|
|
internal.MsgPosition seek_position = 5;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
message PartitionStates {
|
|
|
|
int64 partitionID = 1;
|
|
|
|
PartitionState state = 2;
|
|
|
|
int64 inMemory_percentage = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
message SegmentInfo {
|
|
|
|
int64 segmentID = 1;
|
|
|
|
int64 collectionID = 2;
|
|
|
|
int64 partitionID = 3;
|
|
|
|
int64 nodeID = 4;
|
|
|
|
int64 mem_size = 5;
|
|
|
|
int64 num_rows = 6;
|
|
|
|
string index_name = 7;
|
|
|
|
int64 indexID = 8;
|
|
|
|
string dmChannel = 9;
|
|
|
|
repeated int64 compactionFrom = 10;
|
|
|
|
bool createdByCompaction = 11;
|
|
|
|
common.SegmentState segment_state = 12;
|
|
|
|
bool enable_index = 13;
|
|
|
|
repeated index.IndexFilePathInfo index_path_infos = 14;
|
|
|
|
}
|
|
|
|
|
2021-06-15 12:41:40 +08:00
|
|
|
message CollectionInfo {
|
|
|
|
int64 collectionID = 1;
|
|
|
|
repeated int64 partitionIDs = 2;
|
2021-08-02 22:39:25 +08:00
|
|
|
repeated PartitionStates partition_states = 3;
|
2021-12-15 16:53:12 +08:00
|
|
|
repeated DmChannelWatchInfo channel_infos = 4;
|
2021-08-02 22:39:25 +08:00
|
|
|
LoadType load_type = 5;
|
|
|
|
schema.CollectionSchema schema = 6;
|
|
|
|
repeated int64 released_partitionIDs = 7;
|
|
|
|
int64 inMemory_percentage = 8;
|
2021-06-15 12:41:40 +08:00
|
|
|
}
|
|
|
|
|
2021-12-15 16:53:12 +08:00
|
|
|
//---- synchronize messages proto between QueryCoord and QueryNode -----
|
2021-10-26 15:18:22 +08:00
|
|
|
message SegmentChangeInfo {
|
|
|
|
int64 online_nodeID = 1;
|
|
|
|
repeated SegmentInfo online_segments = 2;
|
|
|
|
int64 offline_nodeID = 3;
|
|
|
|
repeated SegmentInfo offline_segments = 4;
|
|
|
|
}
|
|
|
|
|
2021-10-09 14:45:00 +08:00
|
|
|
message SealedSegmentsChangeInfo {
|
|
|
|
common.MsgBase base = 1;
|
2021-10-26 15:18:22 +08:00
|
|
|
repeated SegmentChangeInfo infos = 2;
|
2021-10-09 14:45:00 +08:00
|
|
|
}
|