Skip to content
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

Merged
merged 4 commits into from
Mar 14, 2025

Conversation

aschran
Copy link
Contributor

@aschran aschran commented Mar 13, 2025

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.

  • Protocol: Enables new ExecutionTimeEstimate mode for congestion control in Testnet.
  • Nodes (Validators and Full nodes):
  • gRPC:
  • JSON-RPC:
  • GraphQL:
  • CLI:
  • Rust SDK:

@aschran aschran requested a review from mystenmark as a code owner March 13, 2025 20:43
Copy link

vercel bot commented Mar 13, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
sui-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Mar 14, 2025 6:55pm
2 Skipped Deployments
Name Status Preview Comments Updated (UTC)
multisig-toolkit ⬜️ Ignored (Inspect) Visit Preview Mar 14, 2025 6:55pm
sui-kiosk ⬜️ Ignored (Inspect) Visit Preview Mar 14, 2025 6:55pm

cfg.feature_flags.per_object_congestion_control_mode =
PerObjectCongestionControlMode::ExecutionTimeEstimate(
ExecutionTimeEstimateParams {
target_utilization: 30,
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

any reason for 30?

Copy link
Contributor Author

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,
Copy link
Contributor

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?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Correct

@aschran aschran force-pushed the aschran/cc-estimator-enable branch from d377337 to c210b47 Compare March 14, 2025 18:54
@aschran aschran temporarily deployed to sui-typescript-aws-kms-test-env March 14, 2025 18:54 — with GitHub Actions Inactive
@aschran aschran merged commit 9c04e18 into main Mar 14, 2025
46 of 47 checks passed
@aschran aschran deleted the aschran/cc-estimator-enable branch March 14, 2025 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants