You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, we use Failsafe to retry network operations that might fail. We had a minor production outage last night where a JVM ran out of heap. Upon inspection of the heap dump, we were surprised to realize that this pseudo-code retains much more memory than you expect:
While the Future is executing, it makes perfect sense to retain the supplying function.
But, after all retries and policies are exhausted, is that still necessary?
It seems that this could be improved with a small change: in AsyncExecutionImpl.complete, set outerFn = null at the very end. In SyncExecutionImpl.executeSync, set outerFn = null right after applying it. Then, the supplying function could be reclaimed but the result or exception would still be available in the Future.
If this cannot be improved, it is probably good to make a documentation note.
The text was updated successfully, but these errors were encountered:
Hi, we use Failsafe to retry network operations that might fail. We had a minor production outage last night where a JVM ran out of heap. Upon inspection of the heap dump, we were surprised to realize that this pseudo-code retains much more memory than you expect:
If the
cacheMap
is long lived, it seems that the original supplying function is retained indefinitely even once the result is available.FailsafeFuture -> AsyncExecutionImpl -> RetryPolicyExecutor.apply$Lambda -> failsafe.Functions$Lambda -> OurSupplier
While the Future is executing, it makes perfect sense to retain the supplying function.
But, after all retries and policies are exhausted, is that still necessary?
It seems that this could be improved with a small change: in
AsyncExecutionImpl.complete
, setouterFn = null
at the very end. InSyncExecutionImpl.executeSync
, setouterFn = null
right afterapply
ing it. Then, the supplying function could be reclaimed but the result or exception would still be available in the Future.If this cannot be improved, it is probably good to make a documentation note.
The text was updated successfully, but these errors were encountered: