Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Heroku: Your account has reached its concurrent build limit

Tags:

heroku

I'm trying to deploy my app to heroku, currently using the free tier. Over the past 5 days I've been redeploying the app as I made changes. I went overzealous with the deploys and now my app is up to version 35 on heroku under the "activity" tab.

Now the error message in the title prevents me from deploying my app. Google search didn't return a thing. If I have reached the deployment limit how do I delete/free up my concurrent build space?

like image 440
kshatriiya Avatar asked Oct 31 '17 06:10

kshatriiya


People also ask

How do you fix your account has reached its concurrent builds limit Heroku?

The simplest solution is to delete your app on Heroku, create a new one and redeploy. Make sure your commit to GitHub has "Node" and "NPM" or "YARN" versions specified within the engines parameter in your package. json file. Deleting and redeploying is the easiest bypass.

What is the build limit for Heroku?

Heroku only allows verified accounts to run builds of multiple apps across an account concurrently. Verified users without an established payment history can create up to 10 concurrent builds at one time. Verified users that also have an established payment history can create up to 300 concurrent builds at one time.

How long can I use Heroku for free?

Personal accounts are given a base of 550 free dyno hours each month. In addition to these base hours, accounts which verify with a credit card will receive an additional 450 hours added to the monthly free dyno quota.

How many projects can I host on Heroku for free?

A 'Free' tier Heroku account allows up to 5 apps.


2 Answers

For my case, heroku restart worked.

like image 178
Yigit Alparslan Avatar answered Sep 17 '22 17:09

Yigit Alparslan


We can cancel the current build. Or any ongoing build using below

heroku builds:cancel

You can check the list of builds using

heroku builds

Or you can cancel any build using build hash from the above result list.

In case builds command not working, you need to install it using

heroku plugins:install heroku-builds

like image 36
Mukesh Singh Rathaur Avatar answered Sep 18 '22 17:09

Mukesh Singh Rathaur