Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Heroku Bandwidth and Space

How much traffic bandwidth and disk space does Heroku support for a free app?

like image 953
Raven Avatar asked Apr 03 '11 14:04

Raven


People also ask

How much space do you get on Heroku?

Maximum storage of 1GB for mini and hobby-dev and 10GB for hobby-basic and basic plans. Maximum of 20 connections. No in-memory cache: The lack of an in-memory cache limits performance, because the data can't be accessed on low-latency storage.

What is Heroku throughput?

Throughput. The Throughput plot displays the number of requests broken down by HTTP status code (1XX, 2XX, 3XX, 4XX and 5XX). The throughput (which can be toggled between RPS and RPM in the metrics preferences) is also displayed for each status code in the legend.

How much RAM does Heroku give?

Comes with 2.5GB RAM.

How do I reduce Heroku memory usage?

Use jemalloc to reduce Rails memory usage On Heroku, you can add jemalloc using a buildpack. For my app, it resulted in ~20% memory usage decrease. Just make sure to test your app with jemalloc thoroughly on a staging environment before deploying it to production.


1 Answers

Heroku free has a 5 MB database and 1 dyno. A dyno is an instance of your application running and responding to requests. In addition, there is a 100 MB limit of your slug, this includes all gems you use. Heroku has a soft bandwidth limit of 2TB per month. More details here - https://devcenter.heroku.com/articles/limits#network-bandwidth

like image 150
Markus Proske Avatar answered Oct 10 '22 10:10

Markus Proske