gcloud preview app deploy process takes ~8 minutes, is this normal?

Yes, that is totally normal. Most of the deployment steps happen away from your computer and are independent of your codebase size, so there's not a lot you can do to speed up the process.

Various steps that are involved in deploying an app on App Engine can be categorized as follows:

  1. Gather info from app.yaml to understand overall deployment
  2. Collect code and use the docker image specified in app.yaml to build a docker image with your code
  3. Provision Compute Instances, networking/firewall rules, install docker related tools on instance, push docker image to instance and start it
  4. Make sure all deployments were successful, start health-checks and if required, transfer/balance out the load.

The only process which takes most of time is the last part where it does all the necessary checks to make sure deployment was successful and start ingesting traffic. Depending upon your code size (uploading code to create container) and requirements for resources (provisioning custom resources), step 2 and 3 might take a bit more time.

If you do an analysis you will find that about 70% of time is consumed in last step, where we have least visibility into, yet the essential process which gives app-engine the ability to do all the heavy lifting.


Make sure you check what is in the zip it's uploading (it tells you the location of this on deploy), and make sure your yaml skip_files is set to include things like your .git directory if you have one, and node_modules


Deploying to the same version got me from 6 minutes to 3 minutes in subsequent deploys.

Example:

$ gcloud app deploy app.yaml --version=test