I'm currently using Aurora Serverless. The scalability is neat feature for a non-global workload. Answer from AreetSurn on reddit.com
🌐
Reddit
reddit.com › r/aws › today i learned "classic postgresql on rds beats aurora in benchmarks"
r/aws on Reddit: Today I learned "Classic PostgreSQL on RDS beats Aurora in Benchmarks"
December 16, 2021 -

One of my client wanted 5000IOPS for peak hours but at the cheaper costs. We tried RDS Provisioning for 5000IOPS but the costs had skyrocketed. After researching I found this medium link I got to know RDS+1TB storage gives better performance than Aurora at 3000IOPS and that too at cheaper costs. Although I'm still stuck at 3000IOPS, I am going to propose this to client. If there is any other option please let me know

🌐
Reddit
reddit.com › r/aws › rds postgres vs aurora postgres
RDS Postgres vs Aurora Postgres : r/aws
November 18, 2021 - RDS and Aurora will run constantly afaik (i haven't double checked my notes) where the serverless variant can be configured to run in potato mode or completely shut down when there is no traffic, saving you $. Note that each technology caters for different versions of Postgres.
🌐
Reddit
reddit.com › r/aws › aws rds or aurora for postgres? how does it manage db connections?
r/aws on Reddit: AWS RDS or Aurora for Postgres? How does it manage db connections?
April 10, 2021 -

I'll be building a MVP using React (S3+CloudFront), Nodejs with GraphQL (Lambda) and a Postgres db.

I'm not sure whether the dB should go on RDS or Aurora? I don't really want to be managing it myself if I can help it as I'm no db expert. I understand how to build tables, normal form, triggers, indexes, relationships etc but the maintenance and provisioning of connections really worries me due to issues we had at my current startup last year. Basically all the connections were used and users were waiting for queries to resolve...

How does RDS/Aurora manage db connections? Is it a case of I can deploy it and not need to worry about the connection pooling/management etc?

Thanks all!

🌐
OneUptime
oneuptime.com › home › blog › amazon rds vs aurora vs self-hosted postgresql
Amazon RDS vs Aurora vs Self-Hosted PostgreSQL
January 21, 2026 - # Create RDS instance aws rds create-db-instance \ --db-instance-identifier mydb \ --db-instance-class db.r6g.large \ --engine postgres \ --master-username admin \ --master-user-password ExamplePassword123 \ --allocated-storage 100 ... # Create Aurora cluster aws rds create-db-cluster \ --db-cluster-identifier myaurora \ --engine aurora-postgresql \ --master-username admin \ --master-user-password ExamplePassword123 aws rds create-db-instance \ --db-instance-identifier myaurora-instance \ --db-cluster-identifier myaurora \ --db-instance-class db.r6g.large \ --engine aurora-postgresql
🌐
Reddit
reddit.com › r/aws › main things to consider when comparing rds to aurora
r/aws on Reddit: Main things to consider when comparing RDS to Aurora
April 22, 2020 -

Hi all,

What are the main things to take into consideration when choosing between RDS and Aurora ? Is the price difference between having a completely managed service in Aurora versus managing your RDS yourself worth it ? It's been years since I've had to discuss relational databases so I need a bit of insight ... Thanks !

Find elsewhere
🌐
Reddit
reddit.com › r/aws › suggestions on rds aurora psql vs rds psql for high availability mutli az & dr cross aws accounts.
r/aws on Reddit: Suggestions on RDS Aurora psql vs RDS psql for High Availability mutli az & DR cross AWS Accounts.
August 17, 2024 -

Here's the scenario:

  • Primary Choice: I’m considering Amazon RDS PostgreSQL vs. Aurora Serverless PostgreSQL, with a preference for Aurora.

  • Deployment: We need multi-AZ support (but not multi-region due to compliance issues). The plan is to use AZs A and B for active/live data, and AZ C for a disaster recovery (DR) setup ( different aws account ).

  • DR Plan: The DR setup will be in a different AWS account.

My key question are : 1. Cross-Account DR: How can I effectively set up live data synchronization from the primary account to the DR setup in another AWS account? What are the recommended approaches for this scenario ( both rds and rds aurora) ?

2, Failover and Failback: What are the best practices for handling failover and failback between the primary and DR environments? How can we ensure minimal downtime and data consistency during these processes?

🌐
Reddit
reddit.com › r/aws › aurora mysql vs aurora postgresql – which uses more resources?
r/aws on Reddit: Aurora MySQL vs Aurora PostgreSQL – Which Uses More Resources?
July 25, 2025 -

We’re currently running our game bac-kend REST API on Aurora MySQL (considering Server-less v2 as well).

Our main question is around resource consumption and performance:

  • Which engine (Aurora MySQL vs Aurora PostgreSQL) tends to consume more RAM or CPU for similar workloads?

  • Are their read/write throughput and latency roughly equal, or does one engine outperform the other for high-concurrency transactional workloads (e.g., a game API with lots of small queries)?

Questions:

  1. If you’ve tested both Aurora MySQL and Aurora PostgreSQL, which one runs “leaner” in terms of resource usage?

  2. Have you seen significant performance differences for REST API-type workloads?

  3. Any unexpected issues (e.g., performance tuning or fail-over behavior) between the two engines?

We don’t rely heavily on MySQL-specific features, so we’re open to switching if PostgreSQL is more efficient or faster.

🌐
AWS
aws.amazon.com › blogs › database › is-amazon-rds-for-postgresql-or-amazon-aurora-postgresql-a-better-choice-for-me
Deep dive on Amazon Aurora and Amazon RDS for PostgreSQL architecture and features | AWS Database Blog
April 29, 2026 - In this post, we delve into the ... of Aurora PostgreSQL and RDS PostgreSQL. We’ll analyze their performance, scalability, failover capabilities, storage options, high availability, and disaster recovery mechanisms. By understanding the strengths and limitations of each service, you’ll be better equipped to make an informed decision for your PostgreSQL deployment on AWS...
🌐
Reddit
reddit.com › r/aws › aws rds postgres / aurora postgres
r/aws on Reddit: AWS RDS Postgres / Aurora Postgres
July 23, 2019 -

Hi,

just here to through out some fairly general questions mostly regarding RDS Postgres / Aurora postgres.

We're a small company that uses Odoo - current setup is a t2.medium EC2 instance for the application / web server, and a t2.medium RDS Postgres instance (9.6.11) for the DB.

This works OK and has been running smoothly for approximately a year, but we find some tasks take longer than we'd like so looking to beef up the servers we currently have (plus we're currently on demand pricing and looking to move to 1 year RIs). Busy hours are only really during the day when staff are online, so I've tested the following :

  1. Aurora Postgres Serverless : Sounded like a great idea - would scale up during busy hours, scale down during other hours. Did some testing and it was just dropping DB connections when scaling and overall really slow. Actually worked out not so cheap , as 2 x ACU is the minimum required. But because of the issues mentioned won't be using this anyway.

  2. Aurora Postgres (R5.Large, Pg 10.7) - Best performance based on my tests - RI for a year would come to $0.21 / hour

  3. RDS Postgres (R5.Large) - With PG 9.6 worse performance than Aurora RDS, with latest PG 11.1 it's on par with Aurora Postgres . RI for a year = $0.18 / hour

So my questions here are :

  1. Is it worth paying the extra for Aurora Postgres - or is it better to wait for this product to be more mature (in a year's time assuming we decide to purchase RI for a year)

  2. Any issues with simply upgrading to latest PG version? I just used the web interface to do this - there was an upgrade log but this seems to have disappeared. I assume when these versions are added to RDS Amazon has already done their own testing beforehand.

Apologies if these questions seem stupid, it's not something I'm very experienced with. So far what's setup "works" but a bit of extra performance is never a bad thing (if it doesn't break anything that is)

🌐
Reddit
reddit.com › r/aws › aurora serverless v2 vs rds cost comparison?
r/aws on Reddit: Aurora Serverless v2 vs RDS cost comparison?
February 4, 2023 -

I have an app in production running on RDS postgresql db.r5.xlarge , the traffic is normal peaking during the day and almost sleeps during the night without any clear spikes.
I have a read replica that is used for reporting queries, this one is problematic, it has spikes whenever the users enter the google data studio reports, and even db.r5.2xlarge doesn't do the job fairly well.
I started thinking about evaluating Aurora Serverless v2 as an option, do you think using serverless will decrease the costs? what sorts of problems using serverless might cause or you have experience with?

Thanks everyone

🌐
Reddit
reddit.com › r/aws › dynamodb or aurora or rds?
r/aws on Reddit: DynamoDB or Aurora or RDS?
December 2, 2024 -

Hey I’m a newly graduated student, who started a SaaS, which is now at $5-6k MRR.

When is the right time to move from DynamoDB to a more structured database like Aurora or RDS?

When I was building the MVP I was basically rushing and put everything into DynamoDB in an unstructured way (UserTable, things like tracking affiliate codes, etc).

It all functions perfectly and costs me under $2 per month for everything. The fact of this is really attractive to me - I have around 100-125 paid users and over the year have stored around 2000-3000 user records in dynamoDB. — it doesn’t make sense to just got to a $170 Aurora monthly cost.

However I’ve recently learned about SQL and have been looking at Aurora but I also think at the same time it is still a bit overkill to move my back end databases to SQL from NoSQL.

If I stay with DynamoDB, are there best practices I should implement to make my data structure more maintainable?

This is really a question on semantics and infrastructure - the dynamoDB does not have any performance and I really like the simplicity, but I feel it might be causing some more trouble?

The main things I care about is dynamic nature and where I can easily change things such as attribute names, as I add a lot of new features each month and we are still in the “searching” phase of the startup so lots of things to change - the plan, is to not really have a plan, and just follow customer feedback.

Top answer
1 of 10
16
This is not a clear-cut decision in your situation because DynamoDB is working fine for you, and if you scale your business , it can also be excellent for scaling if you put a lot of effort and thought into the structure. However, you also want something more flexible and support a higher rate of upcoming structural changes, which is definitely not DynamoDB strong point. You'll need to make trade-offs. Either you stick to DynamoDB or you go with either Aurora/RDS. The other database offers are unlikely to be interesting for your use-case. If you decide to stick with DynamoDB, I recommend buying and reading the DynamoDB book , which has good advice on good practices and avoiding pitfalls. DynamoDB can be extremely good or bad, depending on how carefully the data structure is designed. Otherwise, RDS/Aurora will the more flexible choice, but of course you'll need to migrate everything if you switch. Another option is maybe DocumentDB due to your requirement of being able to change things fast, but I have some reservations with recommending DocumentDB/MongoDB when a relational database can also fit the requirements. If your technology stack loves JSON (e.g. you're working with JS/TS), then it may be an attractive option.
2 of 10
6
Approach to NoSQL is a lot different than relational databases. You need to look it through access patterns. Relational databases are a lot more forgiving and flexible. How did you end up with DynamoDB first? It might cause you a lot of headache later if you didn't make a conscious choice and were unaware or relational databases.
🌐
AWS Builder Center
builder.aws.com › content › 37hJm7Zt7YhaPCw41qk0TQAoo9d › amazon-rds-postgresql-vs-amazon-aurora-postgresql-a-technical-deep-dive-for-startups
Amazon RDS PostgreSQL vs Amazon Aurora PostgreSQL
Connect with builders who understand your journey. Share solutions, influence AWS product development, and access useful content that accelerates your growth. Your community starts here.
🌐
AWS re:Post
repost.aws › questions › QU05RmgYMLT_CJTLS7TfolWA › choosing-rds-postgresql-over-aurora-postgresql
Choosing RDS PostgreSQL over Aurora PostgreSQL | AWS re:Post
April 12, 2022 - While most of the workloads will be good fit for RDS PostgreSQL, Aurora PostgreSQL provides higher performance for high concurrent write throughput workloads. Some additional features such as higher number of readers, better DR, cluster cache ...