diff --git a/internal/config/config.go b/internal/config/config.go index 79f106f..aa4f482 100755 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -445,6 +445,12 @@ func (c *Config) ApplyResourceProfile(profileName string) error { // Apply profile settings c.ResourceProfile = profile.Name + + // If LargeDBMode is enabled, apply its modifiers + if c.LargeDBMode { + profile = cpu.ApplyLargeDBMode(profile) + } + c.ClusterParallelism = profile.ClusterParallelism c.Jobs = profile.Jobs c.DumpJobs = profile.DumpJobs