30 Jun
2020
30 Jun
'20
6:40 a.m.
Den mån 29 juni 2020 kl 17:27 skrev Liam Monahan <liam@umiacs.umd.edu>:
For example, here is a bucket that all of a sudden reports that it has 18446744073709551615 objects! The actual count should be around 20,000.
"rgw.none": { "size": 0, "size_actual": 0, "size_utilized": 0, "size_kb": 0, "size_kb_actual": 0, "size_kb_utilized": 0, "num_objects": 18446744073709551615 },
That number is a small negative 64bit signed value, printed as an unsigned 64bit integer. Seems like the counter underflowed. 2^64 = 18446744073709551616 -- May the most significant bit of your life be positive.