-
Notifications
You must be signed in to change notification settings - Fork 588
HDDS-4562. Old bucket needs to be accessible after the cluster was upgraded to the Quota version. #1677
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HDDS-4562. Old bucket needs to be accessible after the cluster was upgraded to the Quota version. #1677
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -363,7 +363,7 @@ message VolumeInfo { | |
| optional uint64 objectID = 8; | ||
| optional uint64 updateID = 9; | ||
| optional uint64 modificationTime = 10; | ||
| optional uint64 quotaInNamespace = 11; | ||
| optional int64 quotaInNamespace = 11 [default = -2]; | ||
| optional uint64 usedNamespace = 12; | ||
| } | ||
|
|
||
|
|
@@ -503,8 +503,8 @@ message BucketInfo { | |
| optional string sourceVolume = 12; | ||
| optional string sourceBucket = 13; | ||
| optional uint64 usedBytes = 14; | ||
| optional uint64 quotaInBytes = 15; | ||
| optional uint64 quotaInNamespace = 16; | ||
| optional int64 quotaInBytes = 15 [default = -2]; | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. #1677 (comment)
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Interesting, thanks for info. |
||
| optional int64 quotaInNamespace = 16 [default = -2]; | ||
| } | ||
|
|
||
| enum StorageTypeProto { | ||
|
|
||

There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The namespace quota introduction can also be added. We could file a new JIRA for tacking this.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can add namespace quota to this documentation: https://issues.apache.org/jira/browse/HDDS-4594. Before adding to documentation, I will first finish namespace support on bucket: https://issues.apache.org/jira/browse/HDDS-4277