-
Notifications
You must be signed in to change notification settings - Fork 787
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Increase default max LMDB size #3120
Merged
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from 128GB to 256GB
SergiySW
added
the
configuration default change
Change to default configuration values
label
Mar 7, 2021
wezrule
approved these changes
Mar 7, 2021
clemahieu
approved these changes
Mar 7, 2021
deusmax
pushed a commit
to deusmax/nano-node
that referenced
this pull request
Mar 16, 2021
from 128GB to 256GB
clemahieu
added a commit
that referenced
this pull request
Mar 18, 2021
* Disable peers banning * Increase max LMDB size (#3120) from 128GB to 256GB * This is a series of patches to reduce bandwidth consumption from a large amount of frontiers. * Broadcasting blocks only when an election is started rather than immediately upon receipt. * more changes regarding github actions security hardening (#3088) https://docs.github.com/en/actions/learn-github-actions/security-hardening-for-github-actions#using-third-party-actions Co-authored-by: Russel <russel@nano.org> * Remove recently dropped check to restart elections Up until "recently", a new write transaction was opened to update work on the ledger for every single block. Now with deferred work updates on the block processor, it is no more expensive than processing a new block, so it makes sense to remove this constraint of having been recently dropped. This improves quality of service. The previously implicit check for confirmed dependents (since the election was dropped) is now explicit. The work on the ledger is updated regardless of that check passing. The election is not immediately inserted as *active* anymore, same behavior as the normal election insertion path. Note that if an election is active, the work is **not** updated on the ledger. That behavior also seems desirable. This could be achieved by updating the store after the block is identified as old, directly within `ledger::process`. For post-processing, a flag can be passed to `blockprocessor::process_old`, at which point `active_transactions::restart` can be scrapped since it becomes a simple election insertion + stats update (with a dependents confirmed check). Since this change would touch ledger code I am leaving for others to do it. There's also the question if the confirmed status should be checked within the ledger processing code. Note: only tested via core_test. # Conflicts: # nano/core_test/active_transactions.cpp # nano/core_test/node.cpp # nano/lib/locks.cpp # nano/lib/locks.hpp # nano/node/active_transactions.cpp # nano/node/active_transactions.hpp * Show frontiers age in RPC * This decreases the confirm_req_batches_max from 20 to 2, equivalent to 280/sec -> 28/sec. This option is also made configurable. Confirm_req batches are used in the bootstrap process and excessive requests to reps can degrade performance and often get dropped. # Conflicts: # nano/node/active_transactions.cpp # nano/node/confirmation_solicitor.cpp # nano/node/nodeconfig.cpp # nano/node/nodeconfig.hpp * This removes bootstrap restarting code as it is ineffective and can cause unnecessary restarting of the bootstrap process. * Bumping version number. * Including missing header. * Optionally send confirmed frontiers with an optional flag. * Throttled removal of rep crawler targets (#3154) * Throttled removal of rep crawler targets * Remove recursion Co-authored-by: Russel Waters <russel@nano.org> Co-authored-by: Sergey Kroshnin <sergiysw@gmail.com>
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
from 128GB to 256GB