From 58182bc2d3332ebd9e373b45f6349f7f030f7e43 Mon Sep 17 00:00:00 2001 From: Dennis Kobert Date: Sun, 23 Aug 2026 00:57:37 +0000 Subject: [PATCH] Keep the executor arena at 128 MiB --- node-graph/interpreted-executor/src/dynamic_executor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-graph/interpreted-executor/src/dynamic_executor.rs b/node-graph/interpreted-executor/src/dynamic_executor.rs index 66718c46d3..49f6558ce4 100644 --- a/node-graph/interpreted-executor/src/dynamic_executor.rs +++ b/node-graph/interpreted-executor/src/dynamic_executor.rs @@ -15,7 +15,7 @@ use std::collections::{HashMap, HashSet}; use std::error::Error; use std::sync::{Arc, Mutex, PoisonError}; -const ARENA_CAPACITY: usize = 1 << 25; +const ARENA_CAPACITY: usize = 1 << 27; fn new_arena() -> Arena { Arena::new(ARENA_CAPACITY).unwrap_or_else(|| {