![JAR search and dependency download from the Maven repository](/logo.png)
vus-sdk-java.2.4.7.source-code.feder.proto Maven / Gradle / Ivy
syntax = "proto3";
package milvus.proto.feder;
option go_package = "github.com/milvus-io/milvus-proto/go-api/v2/federpb";
import "common.proto";
message SegmentIndexData {
int64 segmentID = 1;
string index_data = 2; // data from knownwhere
}
message FederSegmentSearchResult {
int64 segmentID = 1;
string visit_info = 2;
}
message ListIndexedSegmentRequest {
common.MsgBase base = 1;
string collection_name = 2;
string index_name = 3;
}
message ListIndexedSegmentResponse {
common.Status status = 1;
repeated int64 segmentIDs = 2;
}
message DescribeSegmentIndexDataRequest {
common.MsgBase base = 1;
string collection_name = 2;
string index_name = 3;
repeated int64 segmentsIDs = 4;
}
message DescribeSegmentIndexDataResponse {
common.Status status = 1;
// segmentID => segmentIndexData
map index_data = 2;
repeated common.KeyValuePair index_params = 3;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy