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
We've removed parallel data loading, since multiprocessing caused some issues, made the code convoluted and didn't yield much performance benefits. Instead, we focus on improving throughput.
Still, we want to re-introduce parallel loading of data in the future. Getting this right is more difficult in Python because of the GIL, which more or less forces us to use multiprocessing. That approach has significant overhead and one needs to be careful to set up a multiprocessing pipeline.
The text was updated successfully, but these errors were encountered:
We've removed parallel data loading, since multiprocessing caused some issues, made the code convoluted and didn't yield much performance benefits. Instead, we focus on improving throughput.
Still, we want to re-introduce parallel loading of data in the future. Getting this right is more difficult in Python because of the GIL, which more or less forces us to use multiprocessing. That approach has significant overhead and one needs to be careful to set up a multiprocessing pipeline.
The text was updated successfully, but these errors were encountered: