diff options
Diffstat (limited to 'ctdb')
-rw-r--r-- | ctdb/server/ctdb_call.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/ctdb/server/ctdb_call.c b/ctdb/server/ctdb_call.c index 4a894217ce8..e33bb07fe82 100644 --- a/ctdb/server/ctdb_call.c +++ b/ctdb/server/ctdb_call.c @@ -827,8 +827,13 @@ ctdb_update_db_stat_hot_keys(struct ctdb_db_context *ctdb_db, TDB_DATA key, unsigned int i, id; char *keystr; - /* smallest value is always at index 0 */ - if (count <= ctdb_db->hot_keys[0].count) { + /* + * If all slots are being used then only need to compare + * against the count in the 0th slot, since it contains the + * smallest count. + */ + if (ctdb_db->statistics.num_hot_keys == MAX_HOT_KEYS && + count <= ctdb_db->hot_keys[0].count) { return; } |