aboutsummaryrefslogtreecommitdiff
path: root/other/java
diff options
context:
space:
mode:
authoreddy-gfx <86091021+gfxlabs@users.noreply.github.com>2022-04-06 18:45:55 -0500
committerGitHub <noreply@github.com>2022-04-06 18:45:55 -0500
commitec53eec94f8a745c6a289d593725824a00314793 (patch)
tree415e4d43eb89c415caa5b38f31f7aa15bbe49cc3 /other/java
parent7e925175715c57b49552a94d25d1d3dc40f1d881 (diff)
parent3ab2c0e5c0263de5af35dad91a9107e6038f4203 (diff)
downloadseaweedfs-ec53eec94f8a745c6a289d593725824a00314793.tar.xz
seaweedfs-ec53eec94f8a745c6a289d593725824a00314793.zip
Merge branch 'master' into a
Diffstat (limited to 'other/java')
-rw-r--r--other/java/client/src/main/proto/filer.proto10
1 files changed, 10 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 389332114..35086e245 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -48,6 +48,9 @@ service SeaweedFiler {
rpc Statistics (StatisticsRequest) returns (StatisticsResponse) {
}
+ rpc Ping (PingRequest) returns (PingResponse) {
+ }
+
rpc GetFilerConfiguration (GetFilerConfigurationRequest) returns (GetFilerConfigurationResponse) {
}
@@ -311,6 +314,13 @@ message StatisticsResponse {
uint64 file_count = 6;
}
+message PingRequest {
+ string target = 1; // default to ping itself
+ string target_type = 2;
+}
+message PingResponse {
+}
+
message GetFilerConfigurationRequest {
}
message GetFilerConfigurationResponse {