Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support search on multiple vectors #218

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions proto/milvus.proto
Original file line number Diff line number Diff line change
Expand Up @@ -854,6 +854,26 @@ message SearchResults {
string collection_name = 3;
}

message SearchRequestV2 {
option (common.privilege_ext_obj) = {
object_type: Collection
object_privilege: PrivilegeSearch
object_name_index: 3
};
common.MsgBase base = 1; // must
string db_name = 2;
string collection_name = 3; // must
repeated string partition_names = 4; // must
repeated SearchRequest requests = 5;
repeated common.KeyValuePair rank_params = 6; // must
uint64 travel_timestamp = 7;
uint64 guarantee_timestamp = 8; // guarantee_timestamp
bool not_return_all_meta = 9;
repeated string output_fields = 10;
common.ConsistencyLevel consistency_level = 11;
bool use_default_consistency = 12;
}

message FlushRequest {
option (common.privilege_ext_obj) = {
object_type: Collection
Expand Down
Loading