Chat on WhatsApp

Why are my Adobe Commerce Cloud deploys so slow?

Common culprits:

  • Static content compilation runs on every deploy — fix with SCD_ON_DEMAND_IN_PRODUCTION or skip-static-content build hooks.
  • Composer install fetches from scratch — fix with cached composer + COMPOSER_AUTH proper setup.
  • Deploy hooks run sequentially when they could parallelise.
  • Database upgrade scripts on every deploy — fix with skip patches that haven’t changed.

Tuned correctly, ACC deploys go from 25-40 minutes to 3-5 minutes. We do this on every Standard Cloud Migration project.

Was this helpful?