Home > database >  Heroku Row Limit
Heroku Row Limit

Time:12-13

Why does Heroku have a row limit on their Hobby plan if there is already an overall database size limit? I'm confused because I've reached my row limit, but I'm nowhere near the size limit. Does the amount of rows you store affect what it costs for them to manage it or is that cost only affected by the amount of bytes in your data?

Edit: Also, what constitutes a row, because I added 50 items to a table but it only added one row to my row limit? I thought each item you add to a table is a "row" on the table.

CodePudding user response:

It is to stop people using custom data types to store more than 1 row worth of info in a single row. They want to limit the amount of data people can store so they limit the number of rows, but to do this without limiting row size they also need an overall size limit.

CodePudding user response:

The Heroku Postgres dev plan will be limited to 10,000 rows. Not limit had been enforced. This is a global limit.

  • Related