mukul1987 commented on a change in pull request #718: HDDS-1301. Optimize
recursive ozone filesystem apis
URL: https://github.com/apache/hadoop/pull/718#discussion_r275336240
##########
File path: hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto
##########
@@ -599,6 +613,33 @@ message LookupFileResponse {
optional KeyInfo keyInfo = 1;
}
+message RenameFSEntryRequest {
+ required KeyArgs keyArgs = 1;
+ required string toKeyName = 2;
+}
+
+message RenameFSEntryResponse {
+}
+
+message DeleteFSEntryRequest {
+ required KeyArgs keyArgs = 1;
+ required bool recursive = 2;
+}
+
+message DeleteFSEntryResponse {
+}
+
+message ListStatusRequest {
+ required KeyArgs keyArgs = 1;
+ required bool recursive = 2;
+ required string startKey = 3;
+ required uint64 numEntries = 4;
+}
+
+message ListStatusResponse {
+ repeated hadoop.fs.FileStatusProto statuses = 1;
Review comment:
Lets change this to repeated GetFileStatusResponse or lets introduce a new
OzoneFileStatus proto and use that both in GetFileStatus as well as List Status
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]