aboutsummaryrefslogtreecommitdiff
path: root/other/java/client/src
diff options
context:
space:
mode:
authorChris Lu <chris.lu@gmail.com>2020-06-30 22:53:53 -0700
committerChris Lu <chris.lu@gmail.com>2020-06-30 22:53:57 -0700
commit31e23e97837ba8d6a403e0b8c2d9ea6ff0bc0387 (patch)
tree73e7e3cfd697c97545c60caec10600d739d99b4f /other/java/client/src
parent7be57a1504890ac4a45288c5d6c8c512728d0e4d (diff)
downloadseaweedfs-31e23e97837ba8d6a403e0b8c2d9ea6ff0bc0387.tar.xz
seaweedfs-31e23e97837ba8d6a403e0b8c2d9ea6ff0bc0387.zip
filer: support active<=>active filer replication
Diffstat (limited to 'other/java/client/src')
-rw-r--r--other/java/client/src/main/proto/filer.proto3
1 files changed, 3 insertions, 0 deletions
diff --git a/other/java/client/src/main/proto/filer.proto b/other/java/client/src/main/proto/filer.proto
index 9f55b23f3..a65ef8f3a 100644
--- a/other/java/client/src/main/proto/filer.proto
+++ b/other/java/client/src/main/proto/filer.proto
@@ -140,6 +140,7 @@ message CreateEntryRequest {
string directory = 1;
Entry entry = 2;
bool o_excl = 3;
+ bool is_from_other_cluster = 4;
}
message CreateEntryResponse {
@@ -149,6 +150,7 @@ message CreateEntryResponse {
message UpdateEntryRequest {
string directory = 1;
Entry entry = 2;
+ bool is_from_other_cluster = 3;
}
message UpdateEntryResponse {
}
@@ -168,6 +170,7 @@ message DeleteEntryRequest {
bool is_delete_data = 4;
bool is_recursive = 5;
bool ignore_recursive_error = 6;
+ bool is_from_other_cluster = 7;
}
message DeleteEntryResponse {