xiaoyuyao commented on a change in pull request #847: HDDS-1539. Implement
addAcl,removeAcl,setAcl,getAcl for Volume. Contributed Ajay Kumar.
URL: https://github.com/apache/hadoop/pull/847#discussion_r288188613
##########
File path: hadoop-ozone/common/src/main/proto/OzoneManagerProtocol.proto
##########
@@ -446,6 +459,22 @@ message BucketArgs {
repeated hadoop.hdds.KeyValue metadata = 7;
}
+message OzoneObj {
+ enum ObjectType {
+ VOLUME = 1;
+ BUCKET = 2;
+ KEY = 3;
+ }
+
+ enum StoreType {
+ OZONE = 1;
+ S3 = 2;
+ }
+ required ObjectType resType = 1;
+ required StoreType storeType = 2;
Review comment:
Should we have a default StoreType=OZONE?
----------------------------------------------------------------
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]