We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
PoolingAllocationConfig::max_core_instances_per_component
1 parent 603126d commit 73c7c5eCopy full SHA for 73c7c5e
crates/core/src/lib.rs
@@ -111,6 +111,7 @@ impl Default for Config {
111
.max_component_instance_size(
112
env("SPIN_WASMTIME_INSTANCE_SIZE", (10 * MB) as u32) as usize
113
)
114
+ .max_core_instances_per_component(env("SPIN_WASMTIME_CORE_INSTANCE_COUNT", 200))
115
.max_tables_per_component(env("SPIN_WASMTIME_INSTANCE_TABLES", 20))
116
.table_elements(env("SPIN_WASMTIME_INSTANCE_TABLE_ELEMENTS", 30_000))
117
// The number of memories an instance can have effectively limits the number of inner components
0 commit comments