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
Fix stuck progress bar on "Add nodes" of archive import (#7118)
The removal of the filter_size batching in #6998 caused the progress bar
to only update once at the end instead of incrementally. Here, we
re-introduce query batching (50k IDs per batch for UX) and added
QueryBuilder streaming-based progress updates (every ~10k entities) by
replacing the blocking list comprehension with an explicit for-loop.
Progress now updates during both query batching (for UX) and result
streaming.
0 commit comments