Skip to content

Commit c6a01d6

Browse files
committed
DPL: do not rate limit giving back the resources
Can cause an issue if said resources are needed to complete the timeframe.
1 parent b1904ff commit c6a01d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Framework/Core/src/ArrowSupport.cxx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -284,10 +284,10 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec()
284284
unchangedCount++;
285285
}
286286
changedCountMetric(driverMetrics, unchangedCount, timestamp);
287-
auto maxTimeframes = registry.get<RateLimitConfig>().maxTimeframes;
288-
if (maxTimeframes && (totalTimeframesRead - totalTimeframesConsumed) > maxTimeframes) {
289-
return;
290-
}
287+
//auto maxTimeframes = registry.get<RateLimitConfig>().maxTimeframes;
288+
//if (maxTimeframes && (totalTimeframesRead - totalTimeframesConsumed) > maxTimeframes) {
289+
// return;
290+
//}
291291

292292
static int64_t MAX_SHARED_MEMORY = calculateAvailableSharedMemory(registry);
293293
constexpr int64_t MAX_QUANTUM_SHARED_MEMORY = 100;

0 commit comments

Comments
 (0)