Redshift Serverless: Cost Deep Dive and Use Cases

Serverless computing is all the rage, promising pay-as-you-go magic and freedom from infrastructure woes. But what about serverless for data warehouses? Let's delve into the fascinating (and sometimes confusing) world of Redshift Serverless: its cost structure, ideal use cases, and situations where it might not be the best fit.

Cost Breakdown: Beyond the Illusion of Free

Redshift Serverless offers a compelling promise: only pay for what you use. But like any good magic trick, there's more to the story. Here's the primary cost breakdown:

  • Compute Units (RPUs): You're charged per second for used compute capacity. This is fantastic for burst workloads, but beware of idle charges. Even when your warehouse is inactive, the base capacity incurs costs. It's with a 60-second minimum charge, even just one query is executed in a second in the charge period.
  • Storage: Redshift Managed Storage (RMS) charges apply to the data you store, regardless of serverless or provisioned clusters.
  • Data Transfer: Cross-region data sharing or accessing data from other AWS services like S3, Glue, etc outside the region attract data transfer charges.

By breaking down the cost of Redshift serverless, the RPUs usage majorly impacts the cost. Let's see a few examples of how to analyze the cost of your Redshift serverless.

Redshift serverless uses SYS_SERVERLESS_USAGE to view details of Amazon Redshift serverless usage of resources. After selecting some rows from the tables, it looks like below,

start_timeend_timecompute_secondscompute_capacitydata_storagecross_region_transferred_datacharged_seconds
2024-02-24 16:34:002024-02-24 16:35:00628312240480
2024-02-24 16:33:002024-02-24 16:34:004883121800
2024-02-24 16:30:002024-02-24 16:31:0000312180480
2024-02-24 16:29:002024-02-24 16:30:001383121700
2024-02-24 16:28:002024-02-24 16:29:0000312170480
2024-02-24 16:27:002024-02-24 16:28:00298312100480

From the above records, we know the Redshift serverless is configured with 8 RPUs (minimum RPUs). Every minute for the active Redshift serverless, 480 seconds (60 * 8 RPUs) are charged for the compute units of the Redshift serverless, though the actual usage of compute-seconds is small!

You can use the below query to view the percentage of actual computed seconds for your queries in the charged seconds.

1-- query actual compute usage vs charged usage per day for Redshift Serverless running in us-west-2
2select 
3  DATE_TRUNC('day', start_time) AS query_day, 
4  sum(compute_seconds) as used_compute_seconds, sum(charged_seconds) as charged_seconds, 2/3 as utility_percentage,
5  sum(charged_seconds)*0.360/3600 as cost 
6from sys_serverless_usage where CAST(start_time AS TIMESTAMP) >= CURRENT_DATE - INTERVAL '7 days'
7GROUP BY 1;

If you want to which queries are charged in a specific period, leverage SYS_QUERY_HISTORY to view details of user queries. You could join those two tables to see the relationship like below example,

 1with query_info as (
 2 select
 3 start_time,
 4 end_time,
 5 ('[ user_id: ' || user_id || ' query_id: ' || query_id || ' transaction_id: ' || transaction_id || ' session_id: ' || session_id ||' - queries: ' || SUBSTRING(btrim(query_text), 1, 100) || ' ]') as per_query_info
 6 from sys_query_history where start_time ilike '%2024-02-24%'
 7 order by start_time
 8)
 9select
10 syu.start_time,
11 syu.end_time,
12 compute_capacity,
13 charged_seconds,
14 listagg(per_query_info, ',') as queries_within
15from sys_serverless_usage syu
16inner join query_info sqh
17on sqh.end_time <= syu.end_time
18and sqh.end_time >= syu.start_time
19group by 1,2,3,4;

By analyzing the queries, you can evaluate the performance of Redshift serverless and identify the most expensive queries for optimization.

Use Cases: Where Serverless Shines

Redshift Serverless shines in specific scenarios:

  • The intensive queries in a short period (like massive BI queries in few hours).
  • Ad-hoc analytics: Need to run quick queries on your data without spinning up a cluster? Serverless is perfect.
  • Dev/test environments: Test your data pipeline and queries without managing infrastructure.
  • Unpredictable workloads: For workloads with variable demand, serverless scales automatically, saving you from overprovisioning costs.

When to Say No: Serverless Isn't for Everyone

While tempting, serverless isn't always the answer. Consider these situations:

  • Long-running queries: Serverless charges per second, making it less cost-effective for long-running queries compared to provisioned clusters. For example, streaming ingestion from Kinesis data stream or Kafka.
  • Cost-sensitive workloads: If strict budget control is crucial, the base capacity charge and potential idle costs might outweigh the benefits.

Conclusion: Choose Wisely

Redshift Serverless offers a powerful, flexible option for specific data warehouse needs. However, understanding its cost structure and ideal use cases is crucial to avoid surprises. Carefully evaluate your workload characteristics and budget constraints before diving in. Remember, the magic of serverless lies in using it wisely!

Bonus Tip: Explore hybrid approaches, combining serverless for ad-hoc queries with provisioned clusters for predictable workloads via data sharing feature.

I hope this blog post helps you navigate the world of Redshift Serverless! Do you have any questions or experiences to share? Let's discuss in the comments!

Posts in this Series