-
Notifications
You must be signed in to change notification settings - Fork 182
DOC-13439 added note about bucket memory #3990
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
base: release/8.0
Are you sure you want to change the base?
Conversation
rao-shwe
left a comment
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.
Suggested modifications for a bit of technical correctness and line breaks.
|
|
||
| |=== | ||
| [horizontal] | ||
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the memory allocated to the bucket. |
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.
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the memory allocated to the bucket. | |
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the RAM allocated to the bucket. | |
| + |
| |=== | ||
| [horizontal] | ||
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the memory allocated to the bucket. | ||
| Disk space of the bucket refers to the data size of the bucket on the disk, including all of its replicas. |
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.
| Disk space of the bucket refers to the data size of the bucket on the disk, including all of its replicas. | |
| Disk space refers to the total size of the bucket’s data on the disk, including all of its replicas. | |
| + |
| [horizontal] | ||
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the memory allocated to the bucket. | ||
| Disk space of the bucket refers to the data size of the bucket on the disk, including all of its replicas. | ||
| This can be estimated by: (number of documents * average document size * number of replicas * expected compression ratio). |
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.
| This can be estimated by: (number of documents * average document size * number of replicas * expected compression ratio). | |
| This can be estimated by: | |
| + | |
| (number of documents x average document size x number of replicas x expected compression ratio). |
| [[memory-note]]<<quota-ref, ^1^>>:: Memory refers to the memory allocated to the bucket. | ||
| Disk space of the bucket refers to the data size of the bucket on the disk, including all of its replicas. | ||
| This can be estimated by: (number of documents * average document size * number of replicas * expected compression ratio). | ||
| On a running system, the metric `kv_logical_data_size_bytes` reflects the bucket's size on the disk. |
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.
| On a running system, the metric `kv_logical_data_size_bytes` reflects the bucket's size on the disk. | |
| + | |
| On a running system, the metric `kv_logical_data_size_bytes` reflects the bucket's size on the disk. |
DOC-13439
Added a note to clear up some confusion about what memory actually means within the context of storing data in a bucket.
This is for 8.0, which differs slightly to the 7.6 version.