2017-01-10 09:01:12 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2018-05-10 06:11:54 +00:00
|
|
|
package master_pb;
|
2017-01-10 09:01:12 +00:00
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
service Seaweed {
|
2018-06-01 07:39:39 +00:00
|
|
|
rpc SendHeartbeat (stream Heartbeat) returns (stream HeartbeatResponse) {
|
|
|
|
}
|
2018-07-28 06:09:55 +00:00
|
|
|
rpc KeepConnected (stream ClientListenRequest) returns (stream VolumeLocation) {
|
2018-07-27 08:54:45 +00:00
|
|
|
}
|
2018-10-14 07:12:28 +00:00
|
|
|
rpc LookupVolume (LookupVolumeRequest) returns (LookupVolumeResponse) {
|
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
rpc Assign (AssignRequest) returns (AssignResponse) {
|
|
|
|
}
|
2018-11-23 08:24:51 +00:00
|
|
|
rpc Statistics (StatisticsRequest) returns (StatisticsResponse) {
|
|
|
|
}
|
2017-01-10 09:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
message Heartbeat {
|
2018-06-01 07:39:39 +00:00
|
|
|
string ip = 1;
|
|
|
|
uint32 port = 2;
|
|
|
|
string public_url = 3;
|
|
|
|
uint32 max_volume_count = 4;
|
|
|
|
uint64 max_file_key = 5;
|
|
|
|
string data_center = 6;
|
|
|
|
string rack = 7;
|
|
|
|
uint32 admin_port = 8;
|
|
|
|
repeated VolumeInformationMessage volumes = 9;
|
2018-08-24 08:26:56 +00:00
|
|
|
// delta volume ids
|
|
|
|
repeated uint32 new_vids = 10;
|
|
|
|
repeated uint32 deleted_vids = 11;
|
2017-01-10 09:01:12 +00:00
|
|
|
}
|
2018-06-01 07:39:39 +00:00
|
|
|
|
2017-01-10 09:01:12 +00:00
|
|
|
message HeartbeatResponse {
|
2018-06-01 07:39:39 +00:00
|
|
|
uint64 volumeSizeLimit = 1;
|
|
|
|
string leader = 3;
|
2017-01-10 09:01:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message VolumeInformationMessage {
|
2018-06-01 07:39:39 +00:00
|
|
|
uint32 id = 1;
|
|
|
|
uint64 size = 2;
|
|
|
|
string collection = 3;
|
|
|
|
uint64 file_count = 4;
|
|
|
|
uint64 delete_count = 5;
|
|
|
|
uint64 deleted_byte_count = 6;
|
|
|
|
bool read_only = 7;
|
|
|
|
uint32 replica_placement = 8;
|
|
|
|
uint32 version = 9;
|
|
|
|
uint32 ttl = 10;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Empty {
|
2017-01-10 09:01:12 +00:00
|
|
|
}
|
2018-06-24 22:19:57 +00:00
|
|
|
|
|
|
|
message SuperBlockExtra {
|
2018-06-29 05:20:37 +00:00
|
|
|
message ErasureCoding {
|
|
|
|
uint32 data = 1;
|
|
|
|
uint32 parity = 2;
|
|
|
|
repeated uint32 volume_ids = 3;
|
|
|
|
}
|
|
|
|
ErasureCoding erasure_coding = 1;
|
2018-06-24 22:19:57 +00:00
|
|
|
}
|
2018-07-27 08:54:45 +00:00
|
|
|
|
2018-07-28 06:09:55 +00:00
|
|
|
message ClientListenRequest {
|
|
|
|
string name = 1;
|
|
|
|
}
|
|
|
|
|
2018-07-27 08:54:45 +00:00
|
|
|
message VolumeLocation {
|
|
|
|
string url = 1;
|
|
|
|
string public_url = 2;
|
2018-07-28 06:09:55 +00:00
|
|
|
repeated uint32 new_vids = 3;
|
|
|
|
repeated uint32 deleted_vids = 4;
|
2018-07-27 08:54:45 +00:00
|
|
|
}
|
2018-10-14 07:12:28 +00:00
|
|
|
|
|
|
|
message LookupVolumeRequest {
|
|
|
|
repeated string volume_ids = 1;
|
|
|
|
string collection = 2; // optional, a bit faster if provided.
|
|
|
|
}
|
|
|
|
message LookupVolumeResponse {
|
|
|
|
message VolumeIdLocation {
|
|
|
|
string volume_id = 1;
|
|
|
|
repeated Location locations = 2;
|
|
|
|
string error = 3;
|
|
|
|
}
|
|
|
|
repeated VolumeIdLocation volume_id_locations = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Location {
|
|
|
|
string url = 1;
|
|
|
|
string public_url = 2;
|
|
|
|
}
|
2018-11-20 19:35:45 +00:00
|
|
|
|
|
|
|
message AssignRequest {
|
|
|
|
uint64 count = 1;
|
|
|
|
string replication = 2;
|
|
|
|
string collection = 3;
|
|
|
|
string ttl = 4;
|
|
|
|
string data_center = 5;
|
|
|
|
string rack = 6;
|
|
|
|
string data_node = 7;
|
|
|
|
}
|
|
|
|
message AssignResponse {
|
|
|
|
string fid = 1;
|
|
|
|
string url = 2;
|
|
|
|
string public_url = 3;
|
|
|
|
uint64 count = 4;
|
|
|
|
string error = 5;
|
|
|
|
}
|
2018-11-23 08:24:51 +00:00
|
|
|
|
|
|
|
message StatisticsRequest {
|
|
|
|
string replication = 1;
|
|
|
|
string collection = 2;
|
|
|
|
string ttl = 3;
|
|
|
|
}
|
|
|
|
message StatisticsResponse {
|
|
|
|
string replication = 1;
|
|
|
|
string collection = 2;
|
|
|
|
string ttl = 3;
|
|
|
|
uint64 total_size = 4;
|
|
|
|
uint64 used_size = 5;
|
|
|
|
uint64 file_count = 6;
|
|
|
|
}
|