feat: enhance migration job processing with parallel execution and improved logging

This commit is contained in:
2026-04-09 20:02:04 -05:00
parent 0d9f955b2f
commit 1db35c796c
3 changed files with 53 additions and 33 deletions

View File

@@ -118,7 +118,7 @@ func processMigrationJob(
}()
<-jobCtx.Done()
log.Infof("Migration job completed. Total time: %v", time.Since(jobStartTime))
log.Infof("Migration job completed (%s.%s). Total time: %v", job.SourceTable.Schema, job.SourceTable.Table, time.Since(jobStartTime))
}
func logColumnTypes(columnTypes []ColumnType, label string) {