From b170e7b1e22af950392c9adf11fee9e43ba40f38 Mon Sep 17 00:00:00 2001 From: Giulio Eulisse <10544+ktf@users.noreply.github.com> Date: Fri, 21 Nov 2025 15:09:11 +0100 Subject: [PATCH] DPL Analysis: increase default shared memory offer per reader --- Framework/Core/src/ArrowSupport.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Framework/Core/src/ArrowSupport.cxx b/Framework/Core/src/ArrowSupport.cxx index 1480a64b6fcc2..4150fda9f63f1 100644 --- a/Framework/Core/src/ArrowSupport.cxx +++ b/Framework/Core/src/ArrowSupport.cxx @@ -565,7 +565,7 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec() if (dc.options.count("aod-memory-rate-limit") && dc.options["aod-memory-rate-limit"].defaulted() == false) { config->maxMemory = std::stoll(dc.options["aod-memory-rate-limit"].as()) / 1000000; } else { - config->maxMemory = readers * 500; + config->maxMemory = readers * 2000; } if (dc.options.count("timeframes-rate-limit") && dc.options["timeframes-rate-limit"].defaulted() == false) { config->maxTimeframes = std::stoll(dc.options["timeframes-rate-limit"].as());