-
Does etcd performance impacted by the fragmentation in database? Is there any benchmarks covering this? I wonder if I don't defrag the database regularly, am I going to experience any degradation in performance. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 4 replies
-
Please read: etcd-io/bbolt#401. In short: With NoFreelistSync=True, your performance should not be severely impacted... just wested disk space. But the cost of NoFreelistSync is paid during DB startup time (as it requires full scan on startup). |
Beta Was this translation helpful? Give feedback.
Please read: etcd-io/bbolt#401.
In short: With NoFreelistSync=True, your performance should not be severely impacted... just wested disk space.
Without NoFreelistSync, your perf will be affected due to need to update list of all free pages in each transaction.
But the cost of NoFreelistSync is paid during DB startup time (as it requires full scan on startup).