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...
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...