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
When we ctrl-break from genproofs, it can take more than 60 seconds.
saveBridgeNodeData() calls WriteForestToDisk() in some cases, and WriteMiscData() which calls close() - those are the main candidates for taking a lot of time. But it should be able to stop within > 10 sec even on a slow computer.
Also genproofs is just too slow in general ... slower than it feels like it should be. Something to check out.
The text was updated successfully, but these errors were encountered:
this may be a bottleneck; this part can be made into it's own goroutine / worker, and there can be multiple workers deserializing after it's pulled from disk
When we ctrl-break from genproofs, it can take more than 60 seconds.
saveBridgeNodeData()
callsWriteForestToDisk()
in some cases, andWriteMiscData()
which callsclose()
- those are the main candidates for taking a lot of time. But it should be able to stop within > 10 sec even on a slow computer.Also genproofs is just too slow in general ... slower than it feels like it should be. Something to check out.
The text was updated successfully, but these errors were encountered: