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
152745: sql/import: fix progress summary loss during concurrent updates r=ZhouXing19 a=ZhouXing19
fixes#152543fixes#152519
Previously, `accumulatedBulkSummary` was reset on each `updateJobProgress` call, assuming the job progress update would always succeed. However, if the update failed due to concurrent job state changes and retried, the reset buffer would cause progress data loss, resulting in incorrect row counts in progress reporting.
Fix this by removing the reset logic and directly assigning `accumulatedBulkSummary` to the progress summary instead of adding to it.
Release note (bug fix): Fixed import progress reporting to show correct row counts when concurrent job state changes occur.
152985: roachtest: use LeaderLeases for schemachange/bulkingest tests r=spilchen a=spilchen
Changed from MetamorphicLeases to LeaderLeases in
makeSchemaChangeBulkIngestTest to address potential test stability issues identified in issue #152857.
Closes#152857
Release note: none
Epic: None
Co-authored-by: ZhouXing19 <[email protected]>
Co-authored-by: Matt Spilchen <[email protected]>
0 commit comments