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
Previously indexes and headers were saved on the fly (while rn they are kept in a HashMap until calling flush), and flush was called periodically during IBD (now only after validating blocks once synced).
In other words, all the progress is lost if the node crashes during IBD. This may be faster but doesn't seem desirable.
The text was updated successfully, but these errors were encountered:
Yeah, this is super annoying. The reason I've stopped flushing and added the hashmap is that kv was killing performance, specially during headers sync. I hope that #251 will give us the possibility of restoring from a shutdown during IBD
Previously indexes and headers were saved on the fly (while rn they are kept in a
HashMap
until callingflush
), andflush
was called periodically during IBD (now only after validating blocks once synced).In other words, all the progress is lost if the node crashes during IBD. This may be faster but doesn't seem desirable.
The text was updated successfully, but these errors were encountered: