diff options
| author | Chris Lu <chris.lu@gmail.com> | 2020-12-13 23:08:21 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2020-12-13 23:08:21 -0800 |
| commit | 94525aa0fdb8ecbb3f2adf1d9a04bb1572540700 (patch) | |
| tree | 0ae1e23e33c80c16806a1c4e8a06548c99b0fb83 /other/java/client/src | |
| parent | f6a419c26caf6356df1a099c5a900b158807b5a4 (diff) | |
| download | seaweedfs-94525aa0fdb8ecbb3f2adf1d9a04bb1572540700.tar.xz seaweedfs-94525aa0fdb8ecbb3f2adf1d9a04bb1572540700.zip | |
allocate volume by disk type
Diffstat (limited to 'other/java/client/src')
| -rw-r--r-- | other/java/client/src/main/proto/filer.proto | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto index fe26cca15..ac4c9a0e7 100644 --- a/other/java/client/src/main/proto/filer.proto +++ b/other/java/client/src/main/proto/filer.proto @@ -156,7 +156,7 @@ message FuseAttributes { repeated string group_name = 12; // for hdfs string symlink_target = 13; bytes md5 = 14; - string volume_type = 15; + string disk_type = 15; } message CreateEntryRequest { @@ -221,7 +221,7 @@ message AssignVolumeRequest { string data_center = 5; string path = 6; string rack = 7; - string volume_type = 8; + string disk_type = 8; } message AssignVolumeResponse { @@ -272,7 +272,7 @@ message StatisticsRequest { string replication = 1; string collection = 2; string ttl = 3; - string volume_type = 4; + string disk_type = 4; } message StatisticsResponse { uint64 total_size = 4; |
