If I deploy using the Vercel CLI, does that count towards the concurrent builds limit?
I could not find the answer to this in the docs: Managing Concurrent Builds
If I deploy using the Vercel CLI, does that count towards the concurrent builds limit?
I could not find the answer to this in the docs: Managing Concurrent Builds
@andrewski As per my understanding for Vercel deployments, CLI deployments do count towards the concurrent build limit, just like deployments triggered through Git or the Dashboard. The concurrent build limit is based on the total number of builds happening simultaneously across all deployment methods on your account/team.
You can initiate a Vercel deployment in two ways: with Vercel CLI or by pushing changes to a connected Git repository on GitHub, GitLab, or Bitbucket. It’s also possible for deployments to be initiated through an integration using Vercel REST API.
Depending on how you initiate the build, Vercel may put it in a queue to ensure we build things in the right order and only build the most recent deployment.
Hi @neerajkumar61 , does it also apply when you run vercel deploy
with --prebuilt
option, e.g. project is built on my own infra?
@ulad Yes, vercel deploy --prebuilt
does count towards your concurrent build limit. Here’s why:
So while it does use a concurrent build slot, the impact is minimal due to the faster processing time of pre-built deployments.
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.