2018-05-08 08:59:43 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
2018-05-10 06:18:02 +00:00
|
|
|
package filer_pb;
|
2018-05-08 08:59:43 +00:00
|
|
|
|
2018-11-25 21:43:26 +00:00
|
|
|
option java_package = "seaweedfs.client";
|
|
|
|
option java_outer_classname = "FilerProto";
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
service SeaweedFiler {
|
|
|
|
|
|
|
|
rpc LookupDirectoryEntry (LookupDirectoryEntryRequest) returns (LookupDirectoryEntryResponse) {
|
|
|
|
}
|
|
|
|
|
|
|
|
rpc ListEntries (ListEntriesRequest) returns (ListEntriesResponse) {
|
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
rpc CreateEntry (CreateEntryRequest) returns (CreateEntryResponse) {
|
|
|
|
}
|
|
|
|
|
2018-05-22 10:26:38 +00:00
|
|
|
rpc UpdateEntry (UpdateEntryRequest) returns (UpdateEntryResponse) {
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
rpc DeleteEntry (DeleteEntryRequest) returns (DeleteEntryResponse) {
|
|
|
|
}
|
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
rpc AtomicRenameEntry (AtomicRenameEntryRequest) returns (AtomicRenameEntryResponse) {
|
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
rpc AssignVolume (AssignVolumeRequest) returns (AssignVolumeResponse) {
|
|
|
|
}
|
|
|
|
|
2018-05-24 08:22:37 +00:00
|
|
|
rpc LookupVolume (LookupVolumeRequest) returns (LookupVolumeResponse) {
|
|
|
|
}
|
|
|
|
|
2018-07-20 07:10:01 +00:00
|
|
|
rpc DeleteCollection (DeleteCollectionRequest) returns (DeleteCollectionResponse) {
|
|
|
|
}
|
|
|
|
|
2018-11-23 08:24:51 +00:00
|
|
|
rpc Statistics (StatisticsRequest) returns (StatisticsResponse) {
|
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////
|
|
|
|
|
|
|
|
message LookupDirectoryEntryRequest {
|
|
|
|
string directory = 1;
|
|
|
|
string name = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message LookupDirectoryEntryResponse {
|
|
|
|
Entry entry = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message ListEntriesRequest {
|
|
|
|
string directory = 1;
|
2018-07-22 08:14:36 +00:00
|
|
|
string prefix = 2;
|
|
|
|
string startFromFileName = 3;
|
|
|
|
bool inclusiveStartFrom = 4;
|
|
|
|
uint32 limit = 5;
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message ListEntriesResponse {
|
|
|
|
repeated Entry entries = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Entry {
|
|
|
|
string name = 1;
|
|
|
|
bool is_directory = 2;
|
2018-05-16 07:08:44 +00:00
|
|
|
repeated FileChunk chunks = 3;
|
2018-05-08 08:59:43 +00:00
|
|
|
FuseAttributes attributes = 4;
|
2018-09-07 20:12:52 +00:00
|
|
|
map<string, bytes> extended = 5;
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
2019-04-16 07:44:31 +00:00
|
|
|
message FullEntry {
|
|
|
|
string dir = 1;
|
|
|
|
Entry entry = 2;
|
|
|
|
}
|
|
|
|
|
2018-08-13 08:20:49 +00:00
|
|
|
message EventNotification {
|
2018-09-17 07:27:56 +00:00
|
|
|
Entry old_entry = 1;
|
|
|
|
Entry new_entry = 2;
|
|
|
|
bool delete_chunks = 3;
|
2019-04-16 07:44:31 +00:00
|
|
|
string new_parent_path = 4;
|
2018-08-13 08:20:49 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
message FileChunk {
|
|
|
|
string file_id = 1;
|
|
|
|
int64 offset = 2;
|
|
|
|
uint64 size = 3;
|
2018-05-16 07:54:44 +00:00
|
|
|
int64 mtime = 4;
|
2018-09-09 23:25:43 +00:00
|
|
|
string e_tag = 5;
|
2018-09-17 07:27:56 +00:00
|
|
|
string source_file_id = 6;
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
message FuseAttributes {
|
|
|
|
uint64 file_size = 1;
|
2018-11-25 21:43:26 +00:00
|
|
|
int64 mtime = 2; // unix time in seconds
|
2018-05-08 08:59:43 +00:00
|
|
|
uint32 file_mode = 3;
|
|
|
|
uint32 uid = 4;
|
|
|
|
uint32 gid = 5;
|
2018-11-25 21:43:26 +00:00
|
|
|
int64 crtime = 6; // unix time in seconds
|
2018-05-31 03:24:57 +00:00
|
|
|
string mime = 7;
|
2018-06-10 23:57:32 +00:00
|
|
|
string replication = 8;
|
|
|
|
string collection = 9;
|
|
|
|
int32 ttl_sec = 10;
|
2018-11-25 21:43:26 +00:00
|
|
|
string user_name = 11; // for hdfs
|
|
|
|
repeated string group_name = 12; // for hdfs
|
2018-12-26 06:45:44 +00:00
|
|
|
string symlink_target = 13;
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
message CreateEntryRequest {
|
|
|
|
string directory = 1;
|
|
|
|
Entry entry = 2;
|
|
|
|
}
|
|
|
|
|
|
|
|
message CreateEntryResponse {
|
|
|
|
}
|
|
|
|
|
2018-05-24 08:22:37 +00:00
|
|
|
message UpdateEntryRequest {
|
|
|
|
string directory = 1;
|
|
|
|
Entry entry = 2;
|
|
|
|
}
|
|
|
|
message UpdateEntryResponse {
|
|
|
|
}
|
|
|
|
|
2018-05-08 08:59:43 +00:00
|
|
|
message DeleteEntryRequest {
|
|
|
|
string directory = 1;
|
|
|
|
string name = 2;
|
2018-12-11 15:17:10 +00:00
|
|
|
// bool is_directory = 3;
|
2018-06-07 05:11:01 +00:00
|
|
|
bool is_delete_data = 4;
|
2018-07-19 08:21:44 +00:00
|
|
|
bool is_recursive = 5;
|
2018-05-08 08:59:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteEntryResponse {
|
|
|
|
}
|
2018-05-16 07:08:44 +00:00
|
|
|
|
2019-03-31 06:08:29 +00:00
|
|
|
message AtomicRenameEntryRequest {
|
|
|
|
string old_directory = 1;
|
|
|
|
string old_name = 2;
|
|
|
|
string new_directory = 3;
|
|
|
|
string new_name = 4;
|
|
|
|
}
|
|
|
|
|
|
|
|
message AtomicRenameEntryResponse {
|
|
|
|
}
|
|
|
|
|
2018-05-16 07:08:44 +00:00
|
|
|
message AssignVolumeRequest {
|
|
|
|
int32 count = 1;
|
|
|
|
string collection = 2;
|
|
|
|
string replication = 3;
|
2018-06-12 06:13:33 +00:00
|
|
|
int32 ttl_sec = 4;
|
2018-07-14 20:36:28 +00:00
|
|
|
string data_center = 5;
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
message AssignVolumeResponse {
|
|
|
|
string file_id = 1;
|
|
|
|
string url = 2;
|
|
|
|
string public_url = 3;
|
|
|
|
int32 count = 4;
|
2019-02-15 08:09:19 +00:00
|
|
|
string auth = 5;
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-24 08:22:37 +00:00
|
|
|
message LookupVolumeRequest {
|
|
|
|
repeated string volume_ids = 1;
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
2018-05-24 08:22:37 +00:00
|
|
|
|
|
|
|
message Locations {
|
|
|
|
repeated Location locations = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message Location {
|
|
|
|
string url = 1;
|
|
|
|
string public_url = 2;
|
|
|
|
}
|
|
|
|
message LookupVolumeResponse {
|
|
|
|
map<string, Locations> locations_map = 1;
|
2018-05-16 07:08:44 +00:00
|
|
|
}
|
2018-07-20 07:10:01 +00:00
|
|
|
|
|
|
|
message DeleteCollectionRequest {
|
|
|
|
string collection = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
message DeleteCollectionResponse {
|
|
|
|
}
|
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;
|
|
|
|
}
|