FunctionPriceBook

What does a once-a-minute cron job cost on serverless?

A scheduled function firing every minute (about 43,800 runs/month), each running ~500 ms at 256 MB. That is about 5,475 GB-seconds/month. After each platform's free tier, the cheapest of the GB-second-priced platforms is Google Cloud Run at roughly $0/month (compute + 1 GB egress). Per-minute cron is tiny in invocation count but the longer 500 ms duration drives GB-seconds. It fits inside almost every free tier.

Source: Provider pricing pages. Data as of June 2026.

Estimated monthly cost by platform

PlatformCompute (after free tier)Egress (1 GB)Total / month
Google Cloud Run$0varies$0+
Google Cloud Functions$0varies$0+
Azure Functions$0varies$0+
Azure Container Apps$0varies$0+
Scaleway Serverless Functions$0varies$0+
DigitalOcean Functions$0varies$0+
AWS Lambda$0$0.09$0.09

Source: Provider pricing pages. Data as of June 2026.

Assumptions: 43,800 requests/month, 256 MB memory, 500 ms duration, 1 GB egress. Totals are after each platform's free tier and exclude platform minimums and regional variation. "+" marks platforms whose egress rate varies. Snapshot June 2026 — verify on the vendor's pricing page.

How this is calculated

GB-seconds = requests x (duration/1000) x (memory/1024)
compute = max(0, requests - free) / 1M x req-fee + max(0, GB-s - free) x GB-s-rate
total = compute + egress GB x egress-rate

These are transparent calculations over the committed June 2026 snapshot rates — see the methodology. Change the numbers for your own workload in the calculator, and read the full breakdown on each provider page.

Frequently asked questions

What does a once-a-minute cron job cost on serverless?

For 43,800 requests/month at 256 MB and 500 ms each (about 5,475 GB-seconds) plus 1 GB egress, the cheapest of the GB-second-priced platforms is Google Cloud Run at roughly $0/month after its free tier. Per-minute cron is tiny in invocation count but the longer 500 ms duration drives GB-seconds. It fits inside almost every free tier. snapshot captured June 2026.

What assumptions does this estimate make?

Compute = max(0, requests - free requests)/1M x per-1M-request fee + max(0, GB-seconds - free GB-seconds) x per-GB-second rate (CPU-metered platforms add a vCPU-second charge assuming 1 vCPU). Egress = 1 GB x the platform's egress rate. It excludes platform minimums (e.g. Cloudflare Workers Paid $5/mo, Vercel Pro $20/seat), cold-start nuances and regional price differences. See the methodology page.

Which platforms are not shown here?

Two groups are excluded. Resource-time platforms - AWS Fargate, Fly.io Machines, Render, Railway - bill by vCPU-hour, per-minute or instance-hour rather than per request, so a per-request figure is not comparable; for steady, high-utilisation traffic they can be cheaper, while for spiky low-volume traffic the request-priced platforms usually win. The others - Cloudflare Workers, Vercel Functions, Netlify Functions, Deno Deploy, Supabase Edge Functions, Modal - are request-priced but do not publish a clean per-GB-second rate (they bill CPU-time, CPU-ms, per-invocation or a multi-meter model), so we do not estimate their GB-second compute here; see each provider page for its own model.

More scenarios

Last updated: 2026-06-21