With Serverless v2, the hourly cost is somewhere like 12-20 cents per ACU per hour, depending on the AWS Region. You can check the price for each combination of AWS Region and Aurora database engine here: https://aws.amazon.com/rds/aurora/pricing/ Let's consider us-east-1, which (as of January 2024) is 12 cents per ACU per hour. The minimum for Serverless v2 is 0.5 ACUs, so 6 cents / hour. A typical month has 720 hours (30 days) or 744 (31 days). So if you set minimum capacity to 0.5 ACUs, leave the cluster idle, and nothing unexpected happens, best case is roughly $43-45 per month for instance charges. Plus whatever usage-based charges for storage, I/O, and there are some other optional features that could result in charges. (That's why you would go through the exercise with the pricing calculator.) What could interfere with the best case? Turning on memory-consuming or CPU-consuming features could prevent the idle cluster from scaling down to 0.5 ACUs. Something like Performance Insights (minimum 2 ACUs) or global database (minimum 8 ACUs). Cleanup operations like PostgreSQL vacuum could run and cause scaling up when you think the database should be idle. What actions could you take to make the best case even better? Do "stop cluster" overnight or other long periods when you don't need to use the database. If you need to add reader instances to the cluster to test out multi-AZ usage (read/write splitting etc.), delete the reader instances when they're not needed. Have cron jobs to run stop-db-cluster, modify-db-cluster, etc. to put things into a cheaper state during overnight periods if you forget to do it at the end of the day. Answer from rePost-User-6113899 on repost.aws
๐ŸŒ
AWS
aws.amazon.com โ€บ amazon rds โ€บ amazon aurora โ€บ pricing
Amazon Aurora Pricing
4 days ago - For provisioned instances on Amazon Aurora, RDS Extended Support is priced per vCPU per hour. For Aurora Serverless, RDS Extended Support is priced per Aurora Capacity Unit (ACU) per hour consumed by your database. RDS Extended Support pricing is also dependent on AWS Region and the calendar date.
๐ŸŒ
Reddit
reddit.com โ€บ r/aws โ€บ cost for an aurora cluster
r/aws on Reddit: Cost for an aurora cluster
March 12, 2024 -

Hello Experts,

We have one non prod DB cluster in aurora postgres. We are seeing the daily cost for the RDS instance is appearing as ~$300 even we perform no activity on that database. Is there any way to further dig down and see what all queries or functions inside the database is actually contributing to these ~300$ amount?

We were initially thinking if the database backup is costing so much as the database size is ~15TB and we have 7 days backup retention set. But the cost explorer showing the cost under service "backup" as ~$2 only per day. And what should be the backup retention should we set, as it seems its occupying full DB snap each day in the storage and setting the retention for longer period (~35days for e.g.) is going to cost us more?

๐ŸŒ
Vantage
vantage.sh โ€บ blog โ€บ aws-rds-vs-aurora-pricing-in-depth
RDS vs Aurora: A Detailed Pricing Comparison | Vantage
... Storage and IOPS 1TB = 1,000GB 1,000GB x $0.125 per GB-month = $125 storage 5,000 IOPS x $0.10 per IOPS-month = $500 IOPS ยท Instance Hours 730 hours x $1.92 price per hour = $1,401.60 instance hours
๐ŸŒ
AWS
aws.amazon.com โ€บ products โ€บ database โ€บ amazon rds
Managed Relational Database - Amazon RDS Pricing - Amazon Web Services
4 days ago - For provisioned instances on Amazon Aurora, RDS for MySQL, and RDS for PostgreSQL, RDS Extended Support is priced per vCPU per hour. For Aurora Serverless v2, RDS Extended Support is priced per Aurora Capacity Unit (ACU) per hour consumed by your database.
Top answer
1 of 2
2
With Serverless v2, the hourly cost is somewhere like 12-20 cents per ACU per hour, depending on the AWS Region. You can check the price for each combination of AWS Region and Aurora database engine here: https://aws.amazon.com/rds/aurora/pricing/ Let's consider us-east-1, which (as of January 2024) is 12 cents per ACU per hour. The minimum for Serverless v2 is 0.5 ACUs, so 6 cents / hour. A typical month has 720 hours (30 days) or 744 (31 days). So if you set minimum capacity to 0.5 ACUs, leave the cluster idle, and nothing unexpected happens, best case is roughly $43-45 per month for instance charges. Plus whatever usage-based charges for storage, I/O, and there are some other optional features that could result in charges. (That's why you would go through the exercise with the pricing calculator.) What could interfere with the best case? Turning on memory-consuming or CPU-consuming features could prevent the idle cluster from scaling down to 0.5 ACUs. Something like Performance Insights (minimum 2 ACUs) or global database (minimum 8 ACUs). Cleanup operations like PostgreSQL vacuum could run and cause scaling up when you think the database should be idle. What actions could you take to make the best case even better? Do "stop cluster" overnight or other long periods when you don't need to use the database. If you need to add reader instances to the cluster to test out multi-AZ usage (read/write splitting etc.), delete the reader instances when they're not needed. Have cron jobs to run stop-db-cluster, modify-db-cluster, etc. to put things into a cheaper state during overnight periods if you forget to do it at the end of the day.
2 of 2
0
Your best bet is to use AWS Calculator # https://calculator.aws/#/ in order to estimate the operating cost with the services that you plan to use. Secondly using the Graviton2 instances would save a lot compared with other instances. I have listed some common instance types that you may start using and then change later based on your project workload. t4g : For dev/test workload m6g : For general purpose workload r6g : For memory optimized workload Go with small storage initially and then you can scale it based on the need to optimize the cost.
๐ŸŒ
Bytebase
bytebase.com โ€บ blog โ€บ aws-aurora-vs-rds-pricing
AWS Aurora vs. RDS Pricing: A Detailed Comparison 2025
Reserved Instances: Similar to other AWS services, you can purchase Reserved Instances for Aurora to get a significant discount compared to On-Demand pricing in exchange for a one- or three-year commitment. RDS pricing also has several components, which can vary depending on the database engine you choose (e.g., MySQL, PostgreSQL, SQL Server): Database Instance Hours: You pay an hourly rate for the database instances you run. The price depends on the instance type, database engine, and region.
๐ŸŒ
CloudZero
cloudzero.com โ€บ home โ€บ blog โ€บ aws aurora pricing: how to save costs in 2025
AWS Aurora Pricing: How To Save Costs In 2025
March 25, 2025 - For specific figures, the storage rate for Aurora Standard starts at $0.10 per GB-month and $0.225 per GB-month, while the I/O rate for Aurora Standard is $0.20 per million requests.
๐ŸŒ
AWS
aws.amazon.com โ€บ amazon aurora โ€บ amazon aurora dsql โ€บ pricing
Amazon Aurora DSQL Pricing
4 days ago - Amazon Aurora DSQL is the fastest serverless distributed SQL database with virtually unlimited scale, the highest availability, and zero infrastructure management. It automatically scales compute and storage to match your workload demands, so you only pay for what you use with no upfront costs.
Find elsewhere
๐ŸŒ
Pump
pump.co โ€บ home โ€บ blog โ€บ aws aurora pricing - cost breakdown & savings guide
AWS Aurora Pricing - Cost Breakdown & Savings Guide
Amazon Aurora has positioned itself as a leader in cloud databases by providing great scalability, performance, and availability at a very low price - 90% lower than traditional databases with similar functionalities. Consequently, if you are a startup, a small business, or simply a cloud engineer running enterprise systems, understanding Aurora's pricing structure becomes imperative.
๐ŸŒ
PlanetScale
planetscale.com โ€บ blog โ€บ amazon-aurora-pricing-the-many-surprising-costs-of-running-an-aurora-database
Amazon Aurora Pricing: The many surprising costs of running an Aurora database โ€” PlanetScale
RDS Proxy will perform connection pooling as well to better manage the resources consumed by the compute nodes. In the case of a node outage, RDS Proxy can also more quickly detect the outage and redirect traffic to another node without dropping client connections. This is an additional service on top of Aurora and thus incurs an additional charge on your AWS bill.
๐ŸŒ
Holori
holori.com โ€บ accueil โ€บ blog โ€บ mastering aws aurora pricing: tips for cost optimization
Holori - Mastering AWS Aurora Pricing: Tips for Cost Optimization
October 25, 2024 - AWS RDS supports various database engines, including MySQL, PostgreSQL, MariaDB, SQL Server, and Oracle. Aurora aims to provide the availability and reliability of commercial databases at a fraction of the cost, offering enhancements in performance and features compared to standard MySQL and PostgreSQL.
๐ŸŒ
TrustRadius
trustradius.com โ€บ home โ€บ database-as-a-service (dbaas) โ€บ amazon aurora โ€บ pricing
Amazon Aurora Pricing 2025: Compare Plans and Costs
Price Legacy versions Compatibility with third party products for replication or โ€ฆ variable loads. Especially in its Aurora Serverless version. It is more expensive than the normal RDS, but it is worth it fโ€ฆ
Rating: 8.7/10 โ€‹ - โ€‹ 161 votes
Top answer
1 of 2
1
Hey Kyle, Here's what is mentioned in the Serverless documentation[1]: If your provisioned workload has memory requirements that are too high for small DB instance classes such as T3 or T4g, choose a minimum ACU setting that provides memory comparable to an R5 or R6g DB instance. In particular, we recommend the following minimum capacity for use with the specified features (these recommendations are subject to change): Performance Insights โ€“ 2 ACUs Aurora global databases โ€“ 8 ACUs (applies only to the primary AWS Region) Now, I can tell you that Performance Insights is definitely wanting 2 ACU/4gb because you need extra RAM to store the performance_schema tables Performance Insights requires. The 8 ACU is precisely in line with the memory requirements for provisioned instances - the r5.large is 2 vCPU and 16gb, and 8 ACU is the same 16gb of RAM. So they're asking roughly the same specifications. They are recommendations, not absolute rules, so you can go lower, though it does risk out-of-memory errors, and problems with slower than expected replication. It's important to remember to ask how much money might be saved, and how much a crash or restart might affect your application. If it's a new application, still being tested, you can probably afford a lot of scaling up (then back down), and/or the occasional crash. If it's for production, you'd want to measure the cost savings versus the costs of a crash or OOM error. In regards to the AWS pricing calculator please know that the charges for Aurora Serverless v2 capacity are measured in terms of ACU-hours. This is calculated by the average # of ACU's used per hour. For example, if on average every hour you use 4 ACUs for 30 minutes and 2 ACUs for the other 30 minutes each hour would be 3 ACU's. How you calculate this estimate is entirely based on your workload and how often it scales up/down ACUs. Please take a look at the following documentation for more examples on how this estimation process works [2]. Please note in addition to ACUโ€™s used per hour you will be charged for storage rate and I/O rate. For Aurora Standard in US-East-1 you are charged $0.10 per GB-month and $0.20 per 1 million requests. For more information on these prices please view here [3]. Also if you leave the instance running it will continue to use the minimum ACU value that you configured for this cluster. As per Doc [4] โ€œAurora Serverless v2 writers and readers don't scale all the way down to zero ACUs. Idle Aurora Serverless v2 writers and readers can scale down to the minimum ACU value that you specified for the cluster.โ€ **References:** [1]https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.setting-capacity.html#aurora-serverless-v2.min_capacity_considerations [2]Aurora Pricing Examples: https://aws.amazon.com/rds/aurora/pricing/#:~:text=Japanese%20Consumption%20Tax.-,Aurora%20pricing%20examples,-The%20following%20examples [3]Amazon Aurora Pricing: https://aws.amazon.com/rds/aurora/pricing/ [4]https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.how-it-works.html#aurora-serverless-v2.how-it-works.scaling
2 of 2
0
hi Kyle, Hope you are well. Maybe you find global database serverless v2 pgsql capacity that config ACUs set to 8 (https://docs.aws.amazon.com/AmazonRDS/latest/AuroraUserGuide/aurora-serverless-v2.setting-capacity.html), Actually, Serverless v2 price base on capacity(ACUs)/seconds, the smallest ACU is the smallest billing specification of the cluster in the current month, and new fees will be added as the ACUs is elastic. Meantime, you can also configure the smallest ACUs according to your own practice
๐ŸŒ
CloudySave
cloudysave.com โ€บ aws โ€บ rds โ€บ amazon-aurora-pricing
Amazon Aurora Pricing - CloudySave
February 15, 2021 - Amazon Aurora Pricing. The storage that you consume by using the Aurora database is going to get billed in for every GB-month increments and IOs consumed are going to get billed in for every
๐ŸŒ
Cloudexmachina
cloudexmachina.io โ€บ blog โ€บ aws-aurora-pricing
AWS Aurora Pricing Explained: What You Really Pay for and Why
September 2, 2025 - Aurora is AWS's homegrown, cloud-native RDS engine with a distributed, fault-tolerant storage layer and 5x performance claims over vanilla MySQL. Compute (Instances) Provisioned instances are billed per second (5-minute minimum), based on type (e.g., db.r6g.large). Serverless v2 uses Aurora Capacity Units (ACUs), combining CPU and memory with fine-grained scaling, but no Reserved Instance discounts. Graviton2 (r6g) offers ~20% better price-performance than r5.
๐ŸŒ
TigerData
tigerdata.com โ€บ blog โ€บ estimate-amazon-aurora-costs
Estimating Amazon Aurora Costs
January 17, 2024 - For example, Global Database is charged per million replicated write I/Os. If using Aurora MySQL, Backtrack is charged per million record changes. Snapshots and backups are similar to traditional RDS, where you are charged for data transfer and per GB stored per month respectively.
๐ŸŒ
CloudZero
cloudzero.com โ€บ home โ€บ blog โ€บ aurora vs. rds: choosing the best aws database solution
Aurora Vs. RDS: Choosing The Best AWS Database Solution
June 2, 2025 - You can compare prices and get advice on how to optimize your Amazon RDS on EC2 deployment. Picture this: Most cost tools will only show you what your total and average costs are, not precisely how much you spent on Amazon RDS on EC2 vs. Aurora costs, or the other different AWS DB services.