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
In the multiprocess_functions.py file, we currently have an implementation where the number of processes is factor 2. This creates an exponential backoff when there is a failure. For example, the number of processes can be [8, 4, 2, 1]. However, we want to have a linear backoff in cases where the number of files is less.
The text was updated successfully, but these errors were encountered:
In the multiprocess_functions.py file, we currently have an implementation where the number of processes is factor 2. This creates an exponential backoff when there is a failure. For example, the number of processes can be [8, 4, 2, 1]. However, we want to have a linear backoff in cases where the number of files is less.
The text was updated successfully, but these errors were encountered: