Update documentation from https://github.com/apple/foundationdb/pull/4278
This commit is contained in:
parent
551af1127c
commit
614d1584cc
|
@ -426,7 +426,12 @@ struct SplitMetricsRequest {
|
|||
// Should always be used inside a `Standalone`.
|
||||
struct ReadHotRangeWithMetrics {
|
||||
KeyRangeRef keys;
|
||||
// density refers to the ratio of bytes sent(because of the read) and bytes on disk.
|
||||
// For example if key range [A, B) and [B, C) respectively has byte size 100 bytes on disk.
|
||||
// Key range [A,B) was read 30 times.
|
||||
// The density for key range [A,C) is 30 * 100 / 200 = 15
|
||||
double density;
|
||||
// How many bytes of data was sent in a period of time because of read requests.
|
||||
double readBandwidth;
|
||||
|
||||
ReadHotRangeWithMetrics() = default;
|
||||
|
|
Loading…
Reference in New Issue