Why can’t I create a superuser in AWS Postgresql instance?

RDS instances are managed by Amazon. As such, to prevent you from breaking things like replication, your users – even the root user you set up when you create the instance – will not have full superuser privileges. http://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Appendix.PostgreSQL.CommonDBATasks.html When you create a DB instance, the master user system account that you create is assigned … Read more

Downtime for increasing AWS RDS storage?

First, note that you may be looking at the incorrect operation — you describe that you want to change storage size, but have quoted documentation describing storage type. This is an important distinction: RDS advises that you won’t experience an outage for changing storage size, but that you will experience an outage for changing storage … Read more

AWS RDS connection limits

AWS RDS max_connections limit variable is based on Instance type, so you can upgrade your RDS or make more replica. The RDS types with max_connections limit: t2.micro 66 t2.small 150 m3.medium 296 t2.medium 312 m3.large 609 t2.large 648 m4.large 648 m3.xlarge 1237 r3.large 1258 m4.xlarge 1320 m2.xlarge 1412 m3.2xlarge 2492 r3.xlarge 2540 Referring by max_connections … Read more