Reputation: 1349
For AWS RDS Postgres what would be following thresholds for: 1. Maximum Table Size Limit 2. Maximum Number of Columns that can be inserted into a table 3. Maximum size of each column in a table.
Upvotes: 0
Views: 312
Reputation: 1
I believe AWS RDS wont have any special limitations. It will just depend on the underlying postgres version you are using. Please check the standard Postgres documentation. Please see the link below: https://www.postgresql.org/docs/12/limits.html
Max table size:32 TB Max columns per table: 1600 Max field size: 1 GB
Upvotes: 0