aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authorhilimd <68371223+hilimd@users.noreply.github.com>2020-11-17 19:01:04 +0800
committerGitHub <noreply@github.com>2020-11-17 19:01:04 +0800
commitaec071187e5d4408edf5561f23ebf87ec572f2b9 (patch)
treedccea794e0d144ef5abd441e30f82f4ad9e0d6c5 /other/java
parent218561c206943d179740a80d8bb21e1f42b35daa (diff)
parentdc304342b2a5113d402833b024c2123ac70fb162 (diff)
downloadseaweedfs-aec071187e5d4408edf5561f23ebf87ec572f2b9.tar.xz
seaweedfs-aec071187e5d4408edf5561f23ebf87ec572f2b9.zip
Merge pull request #38 from chrislusf/master
sync
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto6
1 files changed, 4 insertions, 2 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 4d9398897..f61b62fa3 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -358,11 +358,13 @@ message FilerConf {
string replication = 3;
string ttl = 4;
enum DiskType {
- HDD = 0;
- SSD = 1;
+ NONE = 0;
+ HDD = 1;
+ SSD = 2;
}
DiskType disk_type = 5;
bool fsync = 6;
+ uint32 volume_growth_count = 7;
}
repeated PathConf locations = 2;
}