mirror of https://github.com/ogoun/Zero.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
618 B
26 lines
618 B
syntax = "proto3";
|
|
|
|
import "Protos/collections.proto";
|
|
|
|
package qdrant;
|
|
|
|
service CollectionsInternal {
|
|
/*
|
|
Get collection info
|
|
*/
|
|
rpc Get (GetCollectionInfoRequestInternal) returns (GetCollectionInfoResponse) {}
|
|
/*
|
|
Initiate shard transfer
|
|
*/
|
|
rpc Initiate (InitiateShardTransferRequest) returns (CollectionOperationResponse) {}
|
|
}
|
|
|
|
message GetCollectionInfoRequestInternal {
|
|
GetCollectionInfoRequest get_collectionInfoRequest = 1;
|
|
uint32 shard_id = 2;
|
|
}
|
|
|
|
message InitiateShardTransferRequest {
|
|
string collection_name = 1; // Name of the collection
|
|
uint32 shard_id = 2; // Id of the temporary shard
|
|
} |