mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-12-21 11:00:08 +08:00
adjust filer conf
This commit is contained in:
@@ -350,9 +350,18 @@ message KvPutResponse {
|
||||
}
|
||||
|
||||
// path-based configurations
|
||||
message FilerPathConfiguration {
|
||||
string location = 1;
|
||||
string collection = 2;
|
||||
string replication = 3;
|
||||
string ttl = 4;
|
||||
message FilerConf {
|
||||
int32 version = 1;
|
||||
message PathConf {
|
||||
string location_prefix = 1;
|
||||
string collection = 2;
|
||||
string replication = 3;
|
||||
string ttl = 4;
|
||||
enum DiskType {
|
||||
HDD = 0;
|
||||
SSD = 1;
|
||||
}
|
||||
DiskType disk_type = 5;
|
||||
}
|
||||
repeated PathConf locations = 2;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user