-
Notifications
You must be signed in to change notification settings - Fork 285
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
refactor(core-transactions): bootstrap transactions in batches #2997
Conversation
Prevents memory spikes during bootstrap phase by loading transactions of the same type in batches instead of all at once into memory during bootstrap.
Codecov Report
@@ Coverage Diff @@
## develop #2997 +/- ##
===========================================
- Coverage 66.05% 65.86% -0.19%
===========================================
Files 420 421 +1
Lines 10035 10082 +47
Branches 509 510 +1
===========================================
+ Hits 6629 6641 +12
- Misses 3364 3399 +35
Partials 42 42
Continue to review full report at Codecov.
|
…sactions/bootstrap
Codecov Report
@@ Coverage Diff @@
## develop #2997 +/- ##
==========================================
Coverage ? 65.86%
==========================================
Files ? 421
Lines ? 10082
Branches ? 510
==========================================
Hits ? 6641
Misses ? 3399
Partials ? 42
Continue to review full report at Codecov.
|
…ts-nonce * ArkEcosystem/core/develop: refactor: remove `vendorFieldHex` (#3014) ci: run push events on master and develop, rest on PRs perf(crypto): memoize base58 de/encoding (#3015) refactor(core-transactions): bootstrap transactions in batches (#2997) perf(crypto): replace bignumber.js with native BigInt (#3010) refactor: add `round.missed` event (#3011)
Summary
Prevents memory spikes during bootstrap phase by loading transactions of
the same type in batches instead of all at once into memory.
Checklist