mount: add grpc method to adjust quota

This commit is contained in:
chrislu
2022-04-02 15:14:37 -07:00
parent a8eefda452
commit 958f880b70
9 changed files with 382 additions and 5 deletions

25
weed/pb/mount.proto Normal file
View File

@@ -0,0 +1,25 @@
syntax = "proto3";
package messaging_pb;
option go_package = "github.com/chrislusf/seaweedfs/weed/pb/mount_pb";
option java_package = "seaweedfs.client";
option java_outer_classname = "MountProto";
//////////////////////////////////////////////////
service SeaweedMount {
rpc Configure (ConfigureRequest) returns (ConfigureResponse) {
}
}
//////////////////////////////////////////////////
message ConfigureRequest {
int64 collection_capacity = 1;
}
message ConfigureResponse {
}