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 5 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
4 changes: 3 additions & 1 deletion massa-execution-worker/src/worker.rs
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,9 @@ 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());
let thread_builder = thread::Builder::new()
.stack_size(200 * 1024 * 1024) //200 Mb stack size
Leo-Besancon marked this conversation as resolved.
Show resolved Hide resolved
.name("execution".into());
let thread_handle = thread_builder
.spawn(move || {
ExecutionThread::new(config, input_data_clone, execution_state, selector).main_loop();
Expand Down
Loading