For example, percent complete will go from 50% to 75% for a few seconds before going back to 60%.
This is caused by how the total number of docs is calculated in the controller. There is a period of time between when the worker finishes a task, and when the completed count is updated.
The solution is to ensure that throughout the code the counts are updated simultaneously.
For example, percent complete will go from 50% to 75% for a few seconds before going back to 60%.
This is caused by how the total number of docs is calculated in the controller. There is a period of time between when the worker finishes a task, and when the completed count is updated.
The solution is to ensure that throughout the code the counts are updated simultaneously.