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
On a Fedora system, after about two hours of operation, the pool used to extract features starts hanging open processes, resulting in a significant increase in memory usage.
The solution was to force the pool to close with pool.close(); pool.join():
I know it is super strange because the context manager should already do this...
The text was updated successfully, but these errors were encountered:
we also ran into an issue with multiprocessing from within a flask web service.
Would the project be open to a PR that allows the threading/multiprocessing to be disabled? Our current workaround is to directly invoke _get_feats which is undesirable for several reasons.
On a Fedora system, after about two hours of operation, the pool used to extract features starts hanging open processes, resulting in a significant increase in memory usage.
The solution was to force the pool to close with
pool.close(); pool.join()
:I know it is super strange because the context manager should already do this...
The text was updated successfully, but these errors were encountered: