Gautham Badhrinathan
Gautham Badhrinathan

Reputation: 2437

HardDisk Quota — Cedar Stack (Heroku)

I know that the maximum slug size allowed is 200 MB. But what is the maximum disk space you can use per instance? Say I'm downloading a couple of files when the node process is running.

Upvotes: 16

Views: 5329

Answers (3)

Mohammed
Mohammed

Reputation: 390

I think the total size for whole server is 620GB. you can run df -k . in free account and I got 394267100 byte.. 400mb

You have approximately 620Gb in the /tmp folder. Any other folder doesn't really matter, as they're readonly anyway.

Upvotes: 0

Steven Chanin
Steven Chanin

Reputation: 610

When I ran df on one of my instances just now (Cedar 14), I get 304G total, 240G available. Still a lot, but less than the responder above. Just an FYI to check your specific instance.

~ $ df -h /tmp Filesystem Size Used Avail Use% Mounted on /dev/mapper/evg0-evol0 304G 49G 240G 17% /tmp

Upvotes: 3

Damien MATHIEU
Damien MATHIEU

Reputation: 32629

heroku run bash
~ $ df -h /tmp
Filesystem            Size  Used Avail Use% Mounted on
-                     620G  6.1G  583G   2% /tmp

You have approximately 620Gb in the /tmp folder.
Any other folder doesn't really matter, as they're readonly anyway.

Upvotes: 17

Related Questions