diff options
author | Martin Schwenke <martin@meltin.net> | 2018-11-15 13:58:53 +1100 |
---|---|---|
committer | Amitay Isaacs <amitay@samba.org> | 2018-12-18 02:02:03 +0100 |
commit | 93284ed0321ff96a97d4b56deedbca62c5852c06 (patch) | |
tree | c944675e87f37dc5f7c04defe0d6865c504edce8 /ctdb/doc | |
parent | b77fae3281a06a99a7e298378a68d273ee28355c (diff) | |
download | samba-93284ed0321ff96a97d4b56deedbca62c5852c06.tar.gz |
ctdb-daemon: Divide by 2 when calculating hop count bucket
This provides finer resolution while still maintaining a reasonable
maximum. In this case the top bucket contains any hop counts
>= 16384, compared to the current situation where the top bucket contains
hop counts >= 268435456.
Signed-off-by: Martin Schwenke <martin@meltin.net>
Reviewed-by: Amitay Isaacs <amitay@gmail.com>
Diffstat (limited to 'ctdb/doc')
-rw-r--r-- | ctdb/doc/ctdb-statistics.7.xml | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/ctdb/doc/ctdb-statistics.7.xml b/ctdb/doc/ctdb-statistics.7.xml index 8d6349d16e6..cb8e5d94689 100644 --- a/ctdb/doc/ctdb-statistics.7.xml +++ b/ctdb/doc/ctdb-statistics.7.xml @@ -436,8 +436,10 @@ Statistics collected since : (000 01:49:20) Fri Sep 12 11:43:12 2014 <title>hop_count_buckets</title> <para> Distribution of migration requests based on hop counts values. - Buckets are 1, < 4, < 8, < 16, < 32, < 64, < - 128, < 256, < 512, ≥ 512. + Buckets are 0, < 2, < 4, < 8, + < 16, < 32, < 64, < 128, + < 256, < 512, < 1024, < 2048, + < 4096, < 8192, < 16384, ≥ 16384. </para> </refsect2> @@ -595,8 +597,10 @@ DB Statistics: notify_index.tdb <title>hop_count_buckets</title> <para> Distribution of migration requests based on hop counts values. - Buckets are 1, < 4, < 8, < 16, < 32, < 64, < - 128, < 256, < 512, ≥ 512. + Buckets are 0, < 2, < 4, < 8, + < 16, < 32, < 64, < 128, + < 256, < 512, < 1024, < 2048, + < 4096, < 8192, < 16384, ≥ 16384. </para> </refsect2> |