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
On migration start, pgroll currently provides progress updates in terms of the number of rows backfilled:
Screen.Recording.2023-09-26.at.15.18.38.mov
pgroll should also include at least an estimate of the total number of rows in the table being backfilled.
One approach to this would be to use row estimates from system catalogs, to avoid running COUNT(*) on large tables, falling back to a COUNT(*) only if the estimate is 0.
The text was updated successfully, but these errors were encountered:
On migration start,
pgroll
currently provides progress updates in terms of the number of rows backfilled:Screen.Recording.2023-09-26.at.15.18.38.mov
pgroll
should also include at least an estimate of the total number of rows in the table being backfilled.One approach to this would be to use row estimates from system catalogs, to avoid running
COUNT(*)
on large tables, falling back to aCOUNT(*)
only if the estimate is 0.The text was updated successfully, but these errors were encountered: