mirror of
https://github.com/dragonflydb/dragonfly.git
synced 2025-05-11 02:15:45 +02:00
chore: fix test_parser_memory_stats flakiness (#3354)
* chore: fix test_parser_memory_stats flakiness 1. Added a robust assert_eventually decorator for pytests 2. Improved the assertion condition in TieredStorageTest.BackgroundOffloading 3. Added total_uploaded stats for tiering that tells how many times offloaded values were promoted back to RAM. * chore: skip test_cluster_fuzzymigration
This commit is contained in:
parent
1fc226b03c
commit
4b1574b5c8
8 changed files with 51 additions and 25 deletions
|
@ -66,6 +66,7 @@ struct TieredStats {
|
|||
uint64_t total_cancels = 0;
|
||||
uint64_t total_deletes = 0;
|
||||
uint64_t total_defrags = 0;
|
||||
uint64_t total_uploads = 0;
|
||||
uint64_t total_registered_buf_allocs = 0;
|
||||
uint64_t total_heap_buf_allocs = 0;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue