Skip to content

Commit 388c823

Browse files
authored
DPL Analysis: increase default shared memory offer per reader (#14840)
1 parent 5a67c14 commit 388c823

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Framework/Core/src/ArrowSupport.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -565,7 +565,7 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
565565
if (dc.options.count("aod-memory-rate-limit") && dc.options["aod-memory-rate-limit"].defaulted() == false) {
566566
config->maxMemory = std::stoll(dc.options["aod-memory-rate-limit"].as<std::string>()) / 1000000;
567567
} else {
568-
config->maxMemory = readers * 500;
568+
config->maxMemory = readers * 2000;
569569
}
570570
if (dc.options.count("timeframes-rate-limit") && dc.options["timeframes-rate-limit"].defaulted() == false) {
571571
config->maxTimeframes = std::stoll(dc.options["timeframes-rate-limit"].as<std::string>());

0 commit comments

Comments
 (0)