-
Notifications
You must be signed in to change notification settings - Fork 11.4k
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
Enable ExecutionTimeEstimate mode for congestion control in testnet #21492
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
2 Skipped Deployments
|
f86e122
to
f67376e
Compare
cfg.feature_flags.per_object_congestion_control_mode = | ||
PerObjectCongestionControlMode::ExecutionTimeEstimate( | ||
ExecutionTimeEstimateParams { | ||
target_utilization: 30, |
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.
any reason for 30?
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.
No reason - it seemed a bit safer to start than the 50 we eventually want to end up at. feel free to propose another number and I'll accept :)
ExecutionTimeEstimateParams { | ||
target_utilization: 30, | ||
allowed_txn_cost_overage_burst_limit_us: 100_000, // 100 ms | ||
randomness_scalar: 20, |
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.
so this multiplies against target utilization meaning that target utilization for randomness txns will be 6%, right?
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.
Correct
f67376e
to
3ca1b00
Compare
668a8f0
to
3d91d3b
Compare
7e0a34f
to
e0b5cd9
Compare
e0b5cd9
to
4b98d1e
Compare
4b98d1e
to
9cbf9f7
Compare
9cbf9f7
to
d377337
Compare
d377337
to
c210b47
Compare
Description
This enables a new congestion control mode that uses a predictive model for PTB command transaction time collaboratively built through consensus by validators.
Test plan
Unit tests, performance backtesting with tool in separate repo, manual inspection.
Release notes
Check each box that your changes affect. If none of the boxes relate to your changes, release notes aren't required.
For each box you select, include information after the relevant heading that describes the impact of your changes that a user might notice and any actions they must take to implement updates.