Disabling any validation/assertion for now as it looks like
we're unable to 100% force RocksDB to spillover.
This test case was just a starting point for other cases
verifying spillover elimination feature. Hence not a big deal
in disabling.
Leaving test case hoping to fix that one day though.
Signed-off-by: Igor Fedotov <ifedotov@suse.com>
//using lower 300MB threshold just to be safe enough
std::cout << "db_used:" << logger->get(l_bluefs_db_used_bytes) << std::endl;
std::cout << "slow_used:" << logger->get(l_bluefs_slow_used_bytes) << std::endl;
- ASSERT_GE(logger->get(l_bluefs_slow_used_bytes), 16 * 1024 * 1024);
+ // Disabling any validation/assertion for now as it looks like
+ // we're unable to 100% force RocksDB to spillover.
+ // Leaving test case hoping to fix that one day though.
+ //ASSERT_GE(logger->get(l_bluefs_slow_used_bytes), 16 * 1024 * 1024);
}
);
}