From 33d99a3a05460012a1ff67da7a239dd5feeb48e2 Mon Sep 17 00:00:00 2001 From: Daniel Joos Date: Thu, 18 Jun 2026 17:13:09 +0200 Subject: [PATCH] Enable throttler in move-tables mode --- go/logic/migrator.go | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/go/logic/migrator.go b/go/logic/migrator.go index 6283777ba..57c28d198 100644 --- a/go/logic/migrator.go +++ b/go/logic/migrator.go @@ -2177,11 +2177,7 @@ func (mgtr *Migrator) executeWriteFuncs() error { return nil } - if !mgtr.migrationContext.IsMoveTablesMode() { - // disable throttling in move-tables mode for now - // https://github.com/github/database-infrastructure/issues/8212 - mgtr.throttler.throttle(nil) - } + mgtr.throttler.throttle(nil) // We give higher priority to event processing, then secondary priority to // rowcopy