Requests vs compute
Short, light functions are request-bound, long or memory-heavy ones flip to compute-bound.
Home / Dev & AI / Cloud Cost / Google Cloud Run Cost Calculator
Cloud Cost
Estimate your Cloud Run bill. Enter requests, vCPU, memory and duration, and see request and compute costs with the free tier applied and a growth projection.
Estimated monthly cost
$0
Requests vs compute
Short, light functions are request-bound, long or memory-heavy ones flip to compute-bound.
Cost as invocations grow
Projected monthly spend at 2x, 5x and 10x volume.
Cloud Run runs containers serverlessly, scaling to zero when idle so you pay only while requests are being served. Billing has three parts: a per request fee, vCPU time and memory time, both measured per second while your container handles traffic. A free tier covers the first two million requests and a large slice of compute each month.
This Cloud Run cost calculator estimates compute from your allocated vCPU, memory and average request duration, applies the request and compute rates, and subtracts the free tier. Because you are billed only during request processing on the default model, short, efficient handlers keep costs very low.
For 10,000,000 requests at 200 ms and 512 MB, memory time is 10,000,000 × 0.2 × 0.5 = 1,000,000 GB-seconds. After the free tier, requests cost 8 × $0.40 = $3.20 and compute a few dollars more, keeping a light service around $5 to $10 a month.
By requests at about $0.40 per million, plus vCPU and memory time per second while serving. A generous free tier covers the first 2 million requests and much of the compute each month.
Yes. With the default request based billing, idle services cost nothing because no vCPU or memory time is billed when there are no requests.
For spiky or low traffic, yes, since it scales to zero. For steady high load, a committed Compute Engine VM can be cheaper per request.
Reduce allocated memory and vCPU to the minimum that performs well, keep handlers fast, and set concurrency higher so each instance serves more requests.
They are July 2026 estimates. Confirm current vCPU, memory and request pricing on the Google Cloud pricing page for your region.