You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"'rocksdb-total-memory-size' parameter is set to {}, less than half the process memory limit of {}. Roughly 75% of process memory should be given to RocksDB",
474
+
ByteCount::from(opts.rocksdb_total_memory_size),
475
+
ByteCount::from(process_memory_size),
476
+
)
477
+
}elseif memory_ratio > 1.0{
478
+
error!(
479
+
"'rocksdb-total-memory-size' parameter is set to {}, more than the process memory limit of {}. This guarantees an OOM under load; roughly 75% of process memory should be given to RocksDB",
480
+
ByteCount::from(opts.rocksdb_total_memory_size),
481
+
ByteCount::from(process_memory_size),
482
+
)
483
+
}elseif memory_ratio > 0.9{
484
+
error!(
485
+
"'rocksdb-total-memory-size' parameter is set to {}, more than 90% of the process memory limit of {}. This risks an OOM under load; roughly 75% of process memory should be given to RocksDB",
0 commit comments