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

Increase execution stack size #4726

Merged
merged 7 commits into from
Jul 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion massa-execution-worker/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,12 @@ pub fn start_execution_worker(

// launch the execution thread
let input_data_clone = input_data.clone();
let thread_builder = thread::Builder::new().name("execution".into());

// We set the stack size to 200 Mb instead of the default 2 Mb to avoid stack overflows
// as a temporary workaround fully fixed by https://github.com/massalabs/massa/pull/4729
let thread_builder = thread::Builder::new()
.stack_size(200 * 1024 * 1024)
.name("execution".into());
let thread_handle = thread_builder
.spawn(move || {
ExecutionThread::new(config, input_data_clone, execution_state, selector).main_loop();
Expand Down
Loading