-
Notifications
You must be signed in to change notification settings - Fork 251
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
SIMD-0207: Raise block limit to 50M #4112
Conversation
runtime/src/bank.rs
Outdated
|
||
// For tests and benches, if the limit is set to maximum then skip | ||
// setting feature-specific limits. | ||
#[cfg(feature = "dev-context-only-utils")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
code comment explains reason for this. Adding comment on review to draw attention.
runtime/src/bank.rs
Outdated
@@ -6829,6 +6829,9 @@ impl Bank { | |||
Arc::new(reserved_keys) | |||
}; | |||
|
|||
// Update the cost-tracker's block limits. | |||
self.update_block_limits(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Whenever we create a completely new bank (from snapshot or genesis) this will set the limits according to the feature-set.
This is also called when we move to a new epoch via new_from_parent
.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It looks like with the current implementation, if a test/etc sets the block limit to a value other than default/50m/max, it'll be reset back to default or 50m on the next epoch boundary. Is that the desired behavior?
Not really, but was trying to keep code simple with the switch in one place.
We could then get rid of the special-casing for tests/benches as well. @brooksprumo wdyt? |
This makes sense to me. |
@brooksprumo. I made the change discussed above; added some more tests that explicitly test from genesis (same code path for from snapshots). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// Cost-Tracker is not serialized in snapshot or any configs. | ||
// We must apply previously activated features related to limits here | ||
// so that the initial bank state is consistent with the feature set. | ||
// Cost-tracker limits are propagated through children banks. | ||
if self | ||
.feature_set | ||
.is_active(&feature_set::raise_block_limits_to_50m::id()) | ||
{ | ||
let (account_cost_limit, block_cost_limit, vote_cost_limit) = simd_0207_block_limits(); | ||
self.write_cost_tracker().unwrap().set_limits( | ||
account_cost_limit, | ||
block_cost_limit, | ||
vote_cost_limit, | ||
); | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@tao-stones @bw-solana this block of code here + additional tests are difference from the original PR.
You can look at just the 2nd commit; the first commit was just cherry-picked directly from previous PR.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
Backports to the beta branch are to be avoided unless absolutely necessary for fixing bugs, security issues, and perf regressions. Changes intended for backport should be structured such that a minimum effective diff can be committed separately from any refactoring, plumbing, cleanup, etc that are not strictly necessary to achieve the goal. Any of the latter should go only into master and ride the normal stabilization schedule. Exceptions include CI/metrics changes, CLI improvements and documentation updates on a case by case basis. |
Problem
Summary of Changes
Fixes #