Skip to content

Conversation

@shekhirin
Copy link
Collaborator

Engine thread is the one doing EVM execution, and it should have the highest priority out of all other threads (RPC / prewarming / state root task)

@shekhirin shekhirin added C-perf A change motivated by improving speed, memory usage or disk footprint A-engine Related to the engine implementation labels Dec 4, 2025
@github-project-automation github-project-automation bot moved this to Backlog in Reth Tracker Dec 4, 2025
std::thread::Builder::new().name("Engine Task".to_string()).spawn(|| task.run()).unwrap();
std::thread::Builder::new()
.name("Engine Task".to_string())
.spawn_with_priority(ThreadPriority::Max, |result| {
Copy link
Collaborator

Choose a reason for hiding this comment

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

can we document what this actually does?

@github-project-automation github-project-automation bot moved this from Backlog to In Progress in Reth Tracker Dec 5, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

A-engine Related to the engine implementation C-perf A change motivated by improving speed, memory usage or disk footprint

Projects

Status: In Progress

Development

Successfully merging this pull request may close these issues.

5 participants