AcctIdx: disable direct to disk for filler account upsert (#21710)
This commit is contained in:
parent
0090916735
commit
58a7d3fc0e
|
@ -372,7 +372,10 @@ impl<T: IndexValue> InMemAccountsIndex<T> {
|
||||||
}
|
}
|
||||||
Entry::Vacant(vacant) => {
|
Entry::Vacant(vacant) => {
|
||||||
// not in cache, look on disk
|
// not in cache, look on disk
|
||||||
let directly_to_disk = self.storage.get_startup();
|
|
||||||
|
// desired to be this for filler accounts: self.storage.get_startup();
|
||||||
|
// but, this has proven to be far too slow at high account counts
|
||||||
|
let directly_to_disk = false;
|
||||||
if directly_to_disk {
|
if directly_to_disk {
|
||||||
// We may like this to always run, but it is unclear.
|
// We may like this to always run, but it is unclear.
|
||||||
// If disk bucket needs to resize, then this call can stall for a long time.
|
// If disk bucket needs to resize, then this call can stall for a long time.
|
||||||
|
|
Loading…
Reference in New Issue