From d373d4837735d0132c6a153f6dbf2cd31a33753a Mon Sep 17 00:00:00 2001 From: Maria Matejka Date: Mon, 16 Dec 2024 09:34:08 +0100 Subject: [PATCH] Table cork compromise The original values were way too low but what was set later was too high and caused memory buildup upon startup. --- nest/rt-table.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nest/rt-table.c b/nest/rt-table.c index 9b0e86dd0..295296bf5 100644 --- a/nest/rt-table.c +++ b/nest/rt-table.c @@ -4469,8 +4469,8 @@ rt_new_table(struct symbol *s, uint addr_type) c->addr_type = addr_type; c->gc_threshold = 1000; c->gc_period = (uint) -1; /* set in rt_postconfig() */ - c->cork_threshold.low = 333300; - c->cork_threshold.high = 1011010; + c->cork_threshold.low = 32768; + c->cork_threshold.high = 98304; c->export_settle = (struct settle_config) { .min = 1 MS, .max = 100 MS, -- 2.47.3